Skip to content

Commit

Permalink
chore: removed unwanted comments
Browse files Browse the repository at this point in the history
  • Loading branch information
0PrashantYadav0 committed Jan 9, 2025
1 parent 6be619e commit 9f9cf25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ int main( void ) {
for ( i = 0; i < 25; i++ ) {
a = random_uniform( 0.0, 10.0 );
b = random_uniform( 0.0, 10.0 ) + a;
c = a + (b - a) * random_uniform( 0.0, 1.0 ); // mode between a and b
c = a + (b - a) * random_uniform( 0.0, 1.0 );
y = stdlib_base_dists_triangular_variance( a, b, c );
printf( "a: %lf, b: %lf, c: %lf, Var(X;a,b,c): %lf\n", a, b, c, y );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ int main( void ) {
for ( i = 0; i < 25; i++ ) {
a = random_uniform( 0.0, 10.0 );
b = random_uniform( 0.0, 10.0 ) + a;
c = a + (b - a) * random_uniform( 0.0, 1.0 ); // mode between a and b
c = a + (b - a) * random_uniform( 0.0, 1.0 );
y = stdlib_base_dists_triangular_variance( a, b, c );
printf( "a: %lf, b: %lf, c: %lf, Var(X;a,b,c): %lf\n", a, b, c, y );
}
Expand Down

0 comments on commit 9f9cf25

Please # to comment.