Skip to content

Commit 9f55092

Browse files
authored
fix: use correct function name
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 2ce0f9e commit 9f55092

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/levy/cdf/benchmark/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/levy/cdf/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ static double benchmark( void ) {
108108

109109
t = tic();
110110
for ( i = 0; i < ITERATIONS; i++ ) {
111-
y = stdlib_base_levy_cdf( x[ i % 100 ], mu[ i % 100 ], c[ i % 100 ] );
111+
y = stdlib_base_dists_levy_cdf( x[ i % 100 ], mu[ i % 100 ], c[ i % 100 ] );
112112
if ( y != y ) {
113113
printf( "should not return NaN\n" );
114114
break;

0 commit comments

Comments
 (0)