Skip to content

Commit e73daee

Browse files
authored
fix: update benchmark.js
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 8e41446 commit e73daee

File tree

1 file changed

+0
-12
lines changed
  • lib/node_modules/@stdlib/math/base/special/bessely1/benchmark

1 file changed

+0
-12
lines changed

lib/node_modules/@stdlib/math/base/special/bessely1/benchmark/benchmark.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,8 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench' );
24-
2524
var Float64Array = require( '@stdlib/array/float64' );
2625
var uniform = require( '@stdlib/random/base/uniform' );
27-
28-
29-
3026
var isnan = require( '@stdlib/math/base/assert/is-nan' );
3127
var pkg = require( './../package.json' ).name;
3228
var y1 = require( './../lib' );
@@ -40,7 +36,6 @@ bench( pkg, function benchmark( b ) {
4036
var y;
4137
var i;
4238

43-
4439
len = 100;
4540
x = new Float64Array( len );
4641
for ( i = 0; i < len; i++ ) {
@@ -49,13 +44,6 @@ bench( pkg, function benchmark( b ) {
4944
b.tic();
5045
for ( i = 0; i < b.iterations; i++ ) {
5146
y = y1( x[ i % len ] );
52-
53-
54-
55-
56-
57-
58-
5947
if ( isnan( y ) ) {
6048
b.fail( 'should not return NaN' );
6149
}

0 commit comments

Comments
 (0)