Skip to content

Commit 0a9419a

Browse files
fix: CI errors
1 parent dfb6628 commit 0a9419a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var bench = require( '@stdlib/bench' );
2424
var randu = require( '@stdlib/random/base/randu' );
25-
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
25+
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pkg = require( './../package.json' ).name;
2727
var ceil2f = require( './../lib' );
2828

@@ -38,7 +38,7 @@ bench( pkg, function benchmark( b ) {
3838
for ( i = 0; i < b.iterations; i++ ) {
3939
x = ( randu()*1.0e7 ) - 5.0e6;
4040
y = ceil2f( x );
41-
if ( isnanf( y ) ) {
41+
if ( isnan( y ) ) {
4242
b.fail( 'should not return NaN' );
4343
}
4444
}

lib/node_modules/@stdlib/math/base/special/ceil2f/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <stdio.h>
2121

2222
int main( void ) {
23-
const float x[] = { 3.14f, -3.14f, 0.5f, 0.0 / 0.0 };
23+
const float x[] = { 3.14f, -3.14f, 0.5f, 0.0f / 0.0f };
2424

2525
float y;
2626
int i;
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-
* Rounds a numeric value to the nearest power of two toward positive infinity.
30+
* Rounds a numeric value to the nearest power of two toward positive infinity for single-precision floating point value.
3131
*/
3232
float stdlib_base_ceil2f( const float x );
3333

lib/node_modules/@stdlib/math/base/special/ceil2f/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
23+
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2424
var isInfinitef = require( '@stdlib/math/base/assert/is-infinitef' );
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var floorf = require( '@stdlib/math/base/special/floorf' );
@@ -55,7 +55,7 @@ function ceil2f( x ) {
5555
var sign;
5656
var p;
5757
if (
58-
isnanf( x ) ||
58+
isnan( x ) ||
5959
isInfinitef( x ) ||
6060
x === 0.0
6161
) {

lib/node_modules/@stdlib/math/base/special/ceil2f/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"libpath": [],
3838
"dependencies": [
3939
"@stdlib/math/base/napi/unary",
40-
"@stdlib/math/base/assert/is-nanf",
40+
"@stdlib/math/base/assert/is-nan",
4141
"@stdlib/math/base/assert/is-infinitef",
4242
"@stdlib/math/base/special/pow",
4343
"@stdlib/math/base/special/floorf",
@@ -59,7 +59,7 @@
5959
"libraries": [],
6060
"libpath": [],
6161
"dependencies": [
62-
"@stdlib/math/base/assert/is-nanf",
62+
"@stdlib/math/base/assert/is-nan",
6363
"@stdlib/math/base/assert/is-infinitef",
6464
"@stdlib/math/base/special/pow",
6565
"@stdlib/math/base/special/floorf",
@@ -81,7 +81,7 @@
8181
"libraries": [],
8282
"libpath": [],
8383
"dependencies": [
84-
"@stdlib/math/base/assert/is-nanf",
84+
"@stdlib/math/base/assert/is-nan",
8585
"@stdlib/math/base/assert/is-infinitef",
8686
"@stdlib/math/base/special/pow",
8787
"@stdlib/math/base/special/floorf",

0 commit comments

Comments
 (0)