Skip to content

Commit

Permalink
chore: reorder variable declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter authored Mar 2, 2025
1 parent a289343 commit cbc8409
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,13 @@ static double random_uniform( const double min, const double max ) {
* @return elapsed time in seconds
*/
static double benchmark( void ) {
int i;
double sigma[ 100 ];
double mu[ 100 ];
double elapsed;
double y;
double t;
double elapsed;
double mu[ 100 ];
double sigma[ 100 ];
int i;

double x[ 100 ];

for ( i = 0; i < LEN; i++ ) {
Expand Down

0 comments on commit cbc8409

Please sign in to comment.