Skip to content

Commit 5ccdd00

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: passed - 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: passed ---
1 parent f8cd5f0 commit 5ccdd00

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,8 @@ int main( void ) {
210210
x = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
211211
mu = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
212212
result = stdlib_base_dists_degenerate_pdf( x, mu );
213-
214213
printf( "x: %lf, µ: %lf, f(x;µ): %lf \n", x, mu, result );
215214
}
216-
217-
return 0;
218215
}
219216
```
220217

lib/node_modules/@stdlib/stats/base/dists/degenerate/pdf/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/pdf/examples/c/example.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,14 @@ static double random_uniform( const double min, const double max ) {
2828

2929
int main( void ) {
3030
double result;
31-
double mu;
31+
double mu;
3232
double x;
3333
int i;
3434

3535
for ( i = 0; i < 10; i++ ) {
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_pdf( x, mu );
39-
4039
printf( "x: %lf, µ: %lf, f(x;µ): %lf \n", x, mu, result );
4140
}
42-
43-
return 0;
4441
}

lib/node_modules/@stdlib/stats/base/dists/degenerate/pdf/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2025 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)