Skip to content

Commit 2b08fe6

Browse files
fix: add indentation
Co-authored-by: Philipp Burckhardt <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 94c8f94 commit 2b08fe6

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/gamma/logpdf/benchmark/c

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/gamma/logpdf/benchmark/c/benchmark.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ static double benchmark( void ) {
102102
int i;
103103

104104
for ( i = 0; i < 100; i++ ) {
105-
x[ i ] = random_uniform( 0.0, 100.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
106-
alpha[ i ] = random_uniform( 0.0, 100.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
107-
beta[ i ] = random_uniform( 0.0, 100.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
105+
x[ i ] = random_uniform( 0STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
106+
alpha[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
107+
beta[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
108108
}
109109

110110
t = tic();

0 commit comments

Comments
 (0)