We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68f1af0 commit 1cedaceCopy full SHA for 1cedace
lib/node_modules/@stdlib/math/base/special/bernoullif/src/main.c
@@ -83,7 +83,7 @@ float stdlib_base_bernoullif( const float n ) {
83
return 0.0f;
84
}
85
if ( n > MAX_BERNOULLI ) {
86
- return ( stdlib_base_is_oddf( n/2.0f ) ) ? STDLIB_CONSTANT_FLOAT32_PINF : STDLIB_CONSTANT_FLOAT32_NINF;
+ return ( stdlib_base_is_oddf( n/2.0f ) ) ? STDLIB_CONSTANT_FLOAT32_PINF : STDLIB_CONSTANT_FLOAT32_NINF;
87
88
return bernoulli_value[ (size_t)( n / 2.0f ) ];
89
0 commit comments