Skip to content

Commit 9d6865f

Browse files
authored
bench: fix domain
Signed-off-by: Athan <[email protected]>
1 parent 775311d commit 9d6865f

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/asec/benchmark/c/native

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/asec/benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static double benchmark( void ) {
9797
int i;
9898

9999
for ( i = 0; i < 100; i++ ) {
100-
x[ i ] = ( 100.0*rand_double() ) - 50.0;
100+
x[ i ] = ( 1000.0*rand_double() ) + 1.0;
101101
}
102102

103103
t = tic();

0 commit comments

Comments
 (0)