Skip to content

Commit 47ae31a

Browse files
authored
Update benchmark.js
Signed-off-by: Harsh <[email protected]>
1 parent 75762e6 commit 47ae31a

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/studentized-range/quantile/benchmark

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/studentized-range/quantile/benchmark/benchmark.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ bench( pkg, function benchmark( b ) {
4242
r = new Float64Array( len );
4343
v = new Float64Array( len );
4444
for( i = 0; i < len; i++ ) {
45-
p[i] = uniform( 0.0, 1.0 );
46-
r[i] = uniform( 2.0, 20.0 );
47-
v[i] = uniform( 2.0, 20.0 );
45+
p[ i ] = uniform( 0.0, 1.0 );
46+
r[ i ] = uniform( 2.0, 20.0 );
47+
v[ i ] = uniform( 2.0, 20.0 );
4848
}
4949

5050
b.tic();
@@ -77,7 +77,7 @@ bench( pkg+':factory', function benchmark( b ) {
7777
p = new Float64Array( len );
7878
myquantile = quantile.factory( v, r );
7979
for ( i = 0; i < len; i++ ) {
80-
p[i] = uniform( 0.0, 1.0 );
80+
p[ i ] = uniform( 0.0, 1.0 );
8181
}
8282

8383
b.tic();

0 commit comments

Comments
 (0)