We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e7acf commit 2079037Copy full SHA for 2079037
lib/node_modules/@stdlib/stats/base/dists/betaprime/variance/benchmark/c/benchmark.c
@@ -100,7 +100,7 @@ static double benchmark( void ) {
100
t = tic();
101
for ( i = 0; i < ITERATIONS; i++ ) {
102
alpha = 20.0 * rand_double();
103
- beta = 20 * rand_double() + 2.0;
+ beta = 20.0 * rand_double() + 2.0;
104
y = stdlib_base_dists_betaprime_variance( alpha, beta );
105
if ( y != y ) {
106
printf( "should not return NaN\n" );
0 commit comments