Skip to content

Commit 594e298

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: 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 --- --- 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: na - 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 24d15a0 commit 594e298

File tree

2 files changed

+0
-8
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf

2 files changed

+0
-8
lines changed

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,9 @@ int main( void ) {
245245
K = stdlib_base_round( random_uniform( 0.0, N ) );
246246
n = stdlib_base_round( random_uniform( 0.0, N ) );
247247
x = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
248-
249248
log_pmf = stdlib_base_dists_hypergeometric_logpmf( x, N, K, n );
250-
251249
printf( "x: %lf, N: %lf, K: %lf, n: %lf, ln(P(X=x;N,K,n)): %lf\n", x, N, K, n, log_pmf );
252250
}
253-
254-
return 0;
255251
}
256252
```
257253

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/examples/c/example.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ int main( void ) {
3939
K = stdlib_base_round( random_uniform( 0.0, N ) );
4040
n = stdlib_base_round( random_uniform( 0.0, N ) );
4141
x = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
42-
4342
log_pmf = stdlib_base_dists_hypergeometric_logpmf( x, N, K, n );
44-
4543
printf( "x: %lf, N: %lf, K: %lf, n: %lf, ln(P(X=x;N,K,n)): %lf\n", x, N, K, n, log_pmf );
4644
}
47-
48-
return 0;
4945
}

0 commit comments

Comments
 (0)