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 3d2b3e8 commit 8f66d56Copy full SHA for 8f66d56
lib/node_modules/@stdlib/stats/base/dists/gamma/logpdf/benchmark/c/benchmark.c
@@ -96,13 +96,13 @@ static double benchmark( void ) {
96
double elapsed;
97
double x[ 100 ];
98
double alpha[ 100 ];
99
- double beta[ 100 ];
+ double beta[ 100 ];
100
double y;
101
double t;
102
int i;
103
104
for ( i = 0; i < 100; i++ ) {
105
- x[ i ] = random_uniform( 0STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
+ x[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
106
alpha[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
107
beta[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
108
}
0 commit comments