Skip to content

Commit

Permalink
chore: removed unwanted comment
Browse files Browse the repository at this point in the history
  • Loading branch information
0PrashantYadav0 committed Jan 8, 2025
1 parent 2fb3a6f commit 6be619e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ static double benchmark( void ) {
int i;

for ( i = 0; i < 100; i++ ) {
a[ i ] = rand_double() * 20.0; // Lower bound
b[ i ] = ( rand_double() * 20.0 ) + a[ i ]; // Upper bound
c[ i ] = ( rand_double() * ( b[i] - a[i] ) ) + a[i]; // Mode
a[ i ] = rand_double() * 20.0;
b[ i ] = ( rand_double() * 20.0 ) + a[ i ];
c[ i ] = ( rand_double() * ( b[i] - a[i] ) ) + a[i];
}

t = tic();
Expand Down

0 comments on commit 6be619e

Please # to comment.