Skip to content

Commit 86115e5

Browse files
committed
fix: incorrect implementation of pow
1 parent 019b21e commit 86115e5

File tree

4 files changed

+115
-124
lines changed

4 files changed

+115
-124
lines changed

lib/node_modules/@stdlib/math/base/special/pow/benchmark/benchmark.native.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4646

4747
b.tic();
4848
for ( i = 0; i < b.iterations; i++ ) {
49-
v = round( randu()*10.0 );
50-
x = round( randu()*10.0 ) - 5.0;
49+
v = ( randu()*10.0 );
50+
x = ( randu()*10.0 ) - 5.0;
5151
y = pow( v, x );
5252
if ( isnan( y ) ) {
5353
b.fail( 'should not return NaN' );

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
#include <stdio.h>
2222

2323
int main( void ) {
24-
double out;
24+
double out;
2525
double b;
2626
double x;
2727
int i;
2828

2929
for ( i = 0; i < 100; i++ ) {
30-
b = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 );
31-
x = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) - 5.0;
30+
b = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 );
31+
x = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) - 5.0;
3232
out = stdlib_base_pow( b, x );
3333
printf( "pow(%lf, %lf) = %lf\n", b, x, out );
3434
}

lib/node_modules/@stdlib/math/base/special/pow/src/addon.c

-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919
#include "stdlib/math/base/special/pow.h"
2020
#include "stdlib/math/base/napi/binary.h"
2121

22-
// cppcheck-suppress shadowFunction
2322
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_pow )

0 commit comments

Comments
 (0)