Skip to content

Commit c13062e

Browse files
committed
style: update to use tabs for indentation
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2ea848b commit c13062e

File tree

30 files changed

+171
-171
lines changed

30 files changed

+171
-171
lines changed

lib/node_modules/@stdlib/math/base/assert/is-probability/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
* // returns false
3636
*/
3737
bool stdlib_base_is_probability( const double x ) {
38-
return ( x >= 0.0 && x <= 1.0 );
38+
return ( x >= 0.0 && x <= 1.0 );
3939
}

lib/node_modules/@stdlib/math/base/special/acot/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
* // returns ~1.571
3131
*/
3232
double stdlib_base_acot( const double x ) {
33-
return stdlib_base_atan( 1.0 / x );
33+
return stdlib_base_atan( 1.0 / x );
3434
}

lib/node_modules/@stdlib/math/base/special/acoversin/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
* // returns ~1.5708
3131
*/
3232
double stdlib_base_acoversin( const double x ) {
33-
return stdlib_base_asin( 1.0 - x );
33+
return stdlib_base_asin( 1.0 - x );
3434
}

lib/node_modules/@stdlib/math/base/special/ahavercosf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
* // returns ~3.1416f
3232
*/
3333
float stdlib_base_ahavercosf( const float x ) {
34-
return 2.0f * stdlib_base_acosf( stdlib_base_sqrtf( x ) );
34+
return 2.0f * stdlib_base_acosf( stdlib_base_sqrtf( x ) );
3535
}

lib/node_modules/@stdlib/math/base/special/asec/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
* // returns 0.0
3131
*/
3232
double stdlib_base_asec( const double x ) {
33-
return stdlib_base_acos( 1.0 / x );
33+
return stdlib_base_acos( 1.0 / x );
3434
}

lib/node_modules/@stdlib/math/base/special/avercos/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
* // returns ~1.0742
3131
*/
3232
double stdlib_base_avercos( const double x ) {
33-
return stdlib_base_acos( 1.0 + x );
33+
return stdlib_base_acos( 1.0 + x );
3434
}

lib/node_modules/@stdlib/math/base/special/coth/examples/c/example.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
#include <stdio.h>
2121

2222
int main( void ) {
23-
const double x[] = { -4.0, -3.11, -2.22, -1.33, -0.44, 0.44, 1.33, 2.22, 3.11, 4.0 };
23+
const double x[] = { -4.0, -3.11, -2.22, -1.33, -0.44, 0.44, 1.33, 2.22, 3.11, 4.0 };
2424

25-
double v;
26-
int i;
27-
for ( i = 0; i < 10; i++ ) {
28-
v = stdlib_base_coth( x[ i ] );
29-
printf( "coth(%lf) = %lf\n", x[ i ], v );
30-
}
25+
double v;
26+
int i;
27+
for ( i = 0; i < 10; i++ ) {
28+
v = stdlib_base_coth( x[ i ] );
29+
printf( "coth(%lf) = %lf\n", x[ i ], v );
30+
}
3131
}

lib/node_modules/@stdlib/math/base/special/csch/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
* // returns ~-0.2757
3535
*/
3636
double stdlib_base_csch( const double x ) {
37-
return 1.0 / stdlib_base_sinh( x );
37+
return 1.0 / stdlib_base_sinh( x );
3838
}

lib/node_modules/@stdlib/math/base/special/ellipk/examples/c/example.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
#include <stdio.h>
2222

2323
int main( void ) {
24-
double m;
25-
double v;
26-
int i;
27-
28-
for ( i = 0; i < 100; i++ ) {
29-
m = -1.0 + ( ( (double)rand() / (double)RAND_MAX ) * 2.0 );
30-
v = stdlib_base_ellipk( m );
31-
printf( "ellipk(%lf) = %lf\n", m, v );
32-
}
24+
double m;
25+
double v;
26+
int i;
27+
28+
for ( i = 0; i < 100; i++ ) {
29+
m = -1.0 + ( ( (double)rand() / (double)RAND_MAX ) * 2.0 );
30+
v = stdlib_base_ellipk( m );
31+
printf( "ellipk(%lf) = %lf\n", m, v );
32+
}
3333
}

lib/node_modules/@stdlib/math/base/special/erfinv/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <stdio.h>
2222

2323
int main() {
24-
const double x[] = { -1.0, -0.78, -0.56, -0.33, -0.11, 0.11, 0.33, 0.56, 0.78, 1.0 };
24+
const double x[] = { -1.0, -0.78, -0.56, -0.33, -0.11, 0.11, 0.33, 0.56, 0.78, 1.0 };
2525
double v;
2626
int i;
2727
for ( i = 0; i < 10; i++ ) {

0 commit comments

Comments
 (0)