Skip to content

Commit fe2d808

Browse files
authored
bench: simplify upper value
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent c9fce47 commit fe2d808

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/levy/pdf/benchmark/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/levy/pdf/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static double benchmark( void ) {
104104
for ( i = 0; i < 100; i++ ) {
105105
mu[ i ] = random_uniform( -10.0, 10.0 );
106106
x[ i ] = random_uniform( mu[ i ], mu[ i ] + 40.0 );
107-
c[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 + STDLIB_CONSTANT_FLOAT64_EPS );
107+
c[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 );
108108
}
109109

110110
t = tic();

0 commit comments

Comments
 (0)