Skip to content

Commit

Permalink
chore: remove extra spaces
Browse files Browse the repository at this point in the history
---
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: na
  - task: lint_c_examples
    status: passed
  - task: lint_c_benchmarks
    status: passed
  - 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
---
  • Loading branch information
Planeshifter committed Jan 20, 2025
1 parent fd465c2 commit 33a4af8
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_cdf( x, mu, s );
printf( "x: %lf, µ: %lf, s: %lf, F(x;µ,s): %lf\n", x, mu, s , y );
printf( "x: %lf, µ: %lf, s: %lf, F(x;µ,s): %lf\n", x, mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_kurtosis( mu, s );
printf( "µ: %lf, s: %lf, Kurt(X;µ,s): %lf\n", mu, s , y );
printf( "µ: %lf, s: %lf, Kurt(X;µ,s): %lf\n", mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_logcdf( x, mu, s );
printf( "x: %lf, µ: %lf, s: %lf, ln(F(x;µ,s)): %lf\n", x, mu, s , y );
printf( "x: %lf, µ: %lf, s: %lf, ln(F(x;µ,s)): %lf\n", x, mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_logpdf( x, mu, s );
printf( "x: %lf, µ: %lf, s: %lf, ln(f(x;µ,s)): %lf\n", x, mu, s , y );
printf( "x: %lf, µ: %lf, s: %lf, ln(f(x;µ,s)): %lf\n", x, mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_median( mu, s );
printf( "µ: %lf, s: %lf, Median(X;µ,s): %lf\n", mu, s , y );
printf( "µ: %lf, s: %lf, Median(X;µ,s): %lf\n", mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_mgf( t, mu, s );
printf( "t: %lf, µ: %lf, s: %lf, M_X(t;µ,s): %lf\n", t, mu, s , y );
printf( "t: %lf, µ: %lf, s: %lf, M_X(t;µ,s): %lf\n", t, mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_mode( mu, s );
printf( "µ: %lf, s: %lf, mode(X;µ,s): %lf\n", mu, s , y );
printf( "µ: %lf, s: %lf, mode(X;µ,s): %lf\n", mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_pdf( x, mu, s );
printf( "x: %lf, µ: %lf, s: %lf, f(x;µ,s): %lf\n", x, mu, s , y );
printf( "x: %lf, µ: %lf, s: %lf, f(x;µ,s): %lf\n", x, mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_skewness( mu, s );
printf( "µ: %lf, s: %lf, SD(X;µ,s): %lf\n", mu, s , y );
printf( "µ: %lf, s: %lf, SD(X;µ,s): %lf\n", mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ int main( void ) {
mu = random_uniform( -50.0, 50.0 );
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
y = stdlib_base_dists_cosine_stdev( mu, s );
printf( "µ: %lf, s: %lf, SD(X;µ,s): %lf\n", mu, s , y );
printf( "µ: %lf, s: %lf, SD(X;µ,s): %lf\n", mu, s, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ int main( void ) {
a = random_uniform( 0.0, 10.0 );
b = random_uniform( a, 20.0 );
y = stdlib_base_dists_uniform_mean( a, b );
printf( "a: %lf , b: %lf , E(X;a,b): %lf\n", a, b, y );
printf( "a: %lf, b: %lf, E(X;a,b): %lf\n", a, b, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ int main( void ) {
a = random_uniform( 0.0, 10.0 );
b = random_uniform( a, 20.0 );
y = stdlib_base_dists_uniform_median( a, b );
printf( "a: %lf , b: %lf, Median(X;a,b): %lf\n", a, b, y );
printf( "a: %lf, b: %lf, Median(X;a,b): %lf\n", a, b, y );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static double benchmark( void ) {
int i;

for ( i = 0; i < 100; i++ ) {
x[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS , 100.0 );
x[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
lambda[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
k[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
}
Expand Down

0 comments on commit 33a4af8

Please sign in to comment.