Skip to content

Commit be347fd

Browse files
committed
fixup! feat: add C implementation for stats/base/dists/gumbel/skewness
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 8f8b360 commit be347fd

File tree

18 files changed

+26
-22
lines changed

18 files changed

+26
-22
lines changed

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/benchmark/benchmark.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ bench( pkg+'::native', opts, function benchmark( b ) {
6262
b.fail( 'should not return NaN' );
6363
}
6464
}
65-
65+
6666
b.toc();
6767
if ( isnan( y ) ) {
6868
b.fail( 'should not return NaN' );
6969
}
7070
b.pass( 'benchmark finished' );
7171
b.end();
72-
});
72+
});

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/benchmark/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ run: $(c_targets)
143143
clean:
144144
$(QUIET) -rm -f *.o *.out
145145

146-
.PHONY: clean
146+
.PHONY: clean

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,4 @@ int main( void ) {
138138
printf( "ok %d benchmark finished\n", i+1 );
139139
}
140140
print_summary( REPEATS, REPEATS );
141-
}
141+
}

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@
167167
], # end actions
168168
}, # end target copy_addon
169169
], # end targets
170-
}
170+
}

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/examples/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ run: $(c_targets)
143143
clean:
144144
$(QUIET) -rm -f *.o *.out
145145

146-
.PHONY: clean
146+
.PHONY: clean

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ int main( void ) {
3737
y = stdlib_base_dists_gumbel_skewness( mu, beta );
3838
printf( "µ: %lf, β: %lf, skew(X;µ,β): %lf\n", mu, beta, y );
3939
}
40-
}
40+
}

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/include.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
'<!@(node -e "var arr = require(\'@stdlib/utils/library-manifest\')(\'./manifest.json\',{},{\'basedir\':process.cwd(),\'paths\':\'posix\'}).libpath; for ( var i = 0; i < arr.length; i++ ) { console.log( arr[ i ] ); }")',
5151
],
5252
}, # end variables
53-
}
53+
}

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/include/stdlib/stats/base/dists/gumbel/skewness.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ double stdlib_base_dists_gumbel_skewness( const double mu, const double beta );
3535
}
3636
#endif
3737

38-
#endif // !STDLIB_STATS_BASE_DISTS_GUMBEL_SKEWNESS_H
38+
#endif // !STDLIB_STATS_BASE_DISTS_GUMBEL_SKEWNESS_H

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ function skewness( mu, beta ) {
6060

6161
// EXPORTS //
6262

63-
module.exports = skewness;
63+
module.exports = skewness;

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@
8686
]
8787
}
8888
]
89-
}
89+
}

0 commit comments

Comments
 (0)