Skip to content

Commit 19543b1

Browse files
committed
removed outside brackets
Signed-off-by: hemantmm <[email protected]>
1 parent d9db1de commit 19543b1

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/levy/ctor/benchmark

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/levy/ctor/benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ bench( pkg+'::instantiation', function benchmark( b ) {
4242
mu = new Float64Array( len );
4343
c = new Float64Array( len );
4444
for ( i = 0; i < len; i++ ) {
45-
mu[ i ] = ( uniform( -50.0, 50.0 ) );
46-
c[ i ] = ( uniform( EPS, 20.0 ) );
45+
mu[ i ] = uniform( EPS, 10.0 );
46+
c[ i ] = uniform( EPS, 20.0 );
4747
}
4848

4949
b.tic();

0 commit comments

Comments
 (0)