Skip to content

Commit 92d6604

Browse files
chore: minor updates
1 parent a744f94 commit 92d6604

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/degenerate/logcdf/benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ bench( pkg, function benchmark( b ) {
4949

5050
b.tic();
5151
for ( i = 0; i < b.iterations; i++ ) {
52-
y = logcdf( x[ i%100 ], mu[ i%100 ] );
52+
y = logcdf( x[ i % len ], mu[ i % len ] );
5353
if ( isnan( y ) ) {
5454
b.fail( 'should not return NaN' );
5555
}
@@ -81,7 +81,7 @@ bench( pkg+':factory', function benchmark( b ) {
8181

8282
b.tic();
8383
for ( i = 0; i < b.iterations; i++ ) {
84-
y = mylogcdf( x[ i%100 ] );
84+
y = mylogcdf( x[ i % len ] );
8585
if ( isnan( y ) ) {
8686
b.fail( 'should not return NaN' );
8787
}

lib/node_modules/@stdlib/stats/base/dists/degenerate/logcdf/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5959

6060
b.tic();
6161
for ( i = 0; i < b.iterations; i++ ) {
62-
y = logcdf( x[ i%100 ], mu[ i%100 ] );
62+
y = logcdf( x[ i % len ], mu[ i % len ] );
6363
if ( isnan( y ) ) {
6464
b.fail( 'should not return NaN' );
6565
}

lib/node_modules/@stdlib/stats/base/dists/degenerate/logcdf/include/stdlib/stats/base/dists/degenerate/logcdf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
Evaluates the natural logarithm of the CDF of a degenerate distribution centered at `mu`.
30+
* Evaluates the natural logarithm of the CDF of a degenerate distribution centered at `mu`.
3131
*/
3232
double stdlib_base_dists_degenerate_logcdf( const double x, const double mu );
3333

lib/node_modules/@stdlib/stats/base/dists/degenerate/logcdf/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
"libpath": [],
7373
"dependencies": [
7474
"@stdlib/math/base/assert/is-nan",
75-
"@stdlib/math/base/special/round",
76-
"@stdlib/constants/float64/ninf"
75+
"@stdlib/constants/float64/ninf",
76+
"@stdlib/math/base/special/round"
7777
]
7878
}
7979
]

0 commit comments

Comments
 (0)