Skip to content

Commit 2ce5fd3

Browse files
authored
Fix Order of Variables According to Length
Signed-off-by: MANI <[email protected]>
1 parent b4d1f2a commit 2ce5fd3

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/cauchy/cdf/examples/c

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/cauchy/cdf/examples/c/example.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ static double random_uniform( const double min, const double max ) {
2626
}
2727

2828
int main( void ) {
29-
double gamma;
29+
int i;
3030
double x;
31-
double x0;
3231
double y;
33-
int i;
32+
double x0;
33+
double gamma;
3434

3535
for ( i = 0; i < 25; i++ ) {
3636
x = random_uniform( 0.0, 10.0 );

0 commit comments

Comments
 (0)