File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ bench( pkg, function benchmark( b ) {
4141 len = 100 ;
4242 mu = new Float64Array ( len ) ;
4343 beta = new Float64Array ( len ) ;
44-
4544 for ( i = 0 ; i < len ; i ++ ) {
4645 mu [ i ] = uniform ( - 50.0 , 50.0 ) ;
4746 beta [ i ] = uniform ( EPS , 20.0 ) ;
@@ -50,7 +49,6 @@ bench( pkg, function benchmark( b ) {
5049 b . tic ( ) ;
5150 for ( i = 0 ; i < b . iterations ; i ++ ) {
5251 y = skewness ( mu [ i % len ] , beta [ i % len ] ) ;
53-
5452 if ( isnan ( y ) ) {
5553 b . fail ( 'should not return NaN' ) ;
5654 }
Original file line number Diff line number Diff line change 1919#include "stdlib/stats/base/dists/gumbel/skewness.h"
2020#include "stdlib/math/base/napi/binary.h"
2121
22- // cppcheck-suppress shadowFunction
2322STDLIB_MATH_BASE_NAPI_MODULE_DD_D ( stdlib_base_dists_gumbel_skewness )
You can’t perform that action at this time.
0 commit comments