Skip to content

Commit 3aea2d6

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 40aae66 commit 3aea2d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mean/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bench( pkg, function benchmark( b ) {
4040
len = 100;
4141
p = new Float64Array( len );
4242
for ( i = 0; i < len; i++ ) {
43-
p[ i ] = uniform( EPS, EPS + 1.0 );
43+
p[ i ] = uniform( EPS, 1.0 );
4444
}
4545

4646
b.tic();

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mean/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4949
len = 100;
5050
p = new Float64Array( len );
5151
for ( i = 0; i < len; i++ ) {
52-
p[ i ] = uniform( EPS, EPS + 1.0 );
52+
p[ i ] = uniform( EPS, 1.0 );
5353
}
5454

5555
b.tic();

0 commit comments

Comments
 (0)