Skip to content

Commit 9f59029

Browse files
committed
refactor: fixed extra spaces and tabs
--- 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: passed - 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: na - task: lint_c_examples status: missing_dependencies - task: lint_c_benchmarks status: missing_dependencies - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: passed - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: passed - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 36fb1c0 commit 9f59029

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

lib/node_modules/@stdlib/stats/base/dists/degenerate/pmf/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,8 @@ int main( void ) {
180180
x = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
181181
mu = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
182182
result = stdlib_base_dists_degenerate_pmf( x, mu );
183-
184183
printf( "x: %lf, µ: %lf, P(X=x;µ): %lf \n", x, mu, result );
185184
}
186-
187-
return 0;
188185
}
189186
```
190187

lib/node_modules/@stdlib/stats/base/dists/degenerate/pmf/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ int main( void ) {
9393
double elapsed;
9494
int i;
9595

96-
// Seed the random number generator:
96+
// Seed the random number generator:
9797
srand( time( NULL ) );
9898

9999
print_version();

lib/node_modules/@stdlib/stats/base/dists/degenerate/pmf/examples/c/example.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ int main( void ) {
3636
x = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
3737
mu = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
3838
result = stdlib_base_dists_degenerate_pmf( x, mu );
39-
4039
printf( "x: %lf, µ: %lf, P(X=x;µ): %lf \n", x, mu, result );
4140
}
42-
43-
return 0;
4441
}

0 commit comments

Comments
 (0)