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 ) {
41
41
len = 100 ;
42
42
mu = new Float64Array ( len ) ;
43
43
beta = new Float64Array ( len ) ;
44
-
45
44
for ( i = 0 ; i < len ; i ++ ) {
46
45
mu [ i ] = uniform ( - 50.0 , 50.0 ) ;
47
46
beta [ i ] = uniform ( EPS , 20.0 ) ;
@@ -50,7 +49,6 @@ bench( pkg, function benchmark( b ) {
50
49
b . tic ( ) ;
51
50
for ( i = 0 ; i < b . iterations ; i ++ ) {
52
51
y = skewness ( mu [ i % len ] , beta [ i % len ] ) ;
53
-
54
52
if ( isnan ( y ) ) {
55
53
b . fail ( 'should not return NaN' ) ;
56
54
}
Original file line number Diff line number Diff line change 19
19
#include "stdlib/stats/base/dists/gumbel/skewness.h"
20
20
#include "stdlib/math/base/napi/binary.h"
21
21
22
- // cppcheck-suppress shadowFunction
23
22
STDLIB_MATH_BASE_NAPI_MODULE_DD_D ( stdlib_base_dists_gumbel_skewness )
You can’t perform that action at this time.
0 commit comments