Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

// MAIN //

bench( pkg+'::instantiation', function benchmark( bm ) {

Check warning on line 34 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down Expand Up @@ -61,7 +61,7 @@
bm.end();
});

bench( pkg+'::get:a', function benchmark( bm ) {

Check warning on line 64 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var a;
var b;
Expand All @@ -87,7 +87,7 @@
bm.end();
});

bench( pkg+'::set:a', function benchmark( bm ) {

Check warning on line 90 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down Expand Up @@ -119,7 +119,7 @@
bm.end();
});

bench( pkg+'::get:b', function benchmark( bm ) {

Check warning on line 122 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var a;
var b;
Expand All @@ -145,7 +145,7 @@
bm.end();
});

bench( pkg+'::set:b', function benchmark( bm ) {

Check warning on line 148 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand All @@ -159,7 +159,7 @@
len = 100;
y = new Float64Array( len );
for ( i = 0; i < len; i++ ) {
y[ i ] = uniform( EPS + a, 100.0 + a);
y[ i ] = uniform( EPS + a, 100.0 + a );
}

bm.tic();
Expand All @@ -177,7 +177,7 @@
bm.end();
});

bench( pkg+':entropy', function benchmark( bm ) {

Check warning on line 180 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down Expand Up @@ -211,7 +211,7 @@
bm.end();
});

bench( pkg+':kurtosis', function benchmark( bm ) {

Check warning on line 214 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down Expand Up @@ -245,7 +245,7 @@
bm.end();
});

bench( pkg+':mean', function benchmark( bm ) {

Check warning on line 248 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down Expand Up @@ -279,7 +279,7 @@
bm.end();
});

bench( pkg+':median', function benchmark( bm ) {

Check warning on line 282 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down Expand Up @@ -313,7 +313,7 @@
bm.end();
});

bench( pkg+':skewness', function benchmark( bm ) {

Check warning on line 316 in lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var dist;
var len;
var a;
Expand Down
Loading