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 be018c2 commit d8b8b92Copy full SHA for d8b8b92
lib/node_modules/@stdlib/math/base/special/ellipe/test/fixtures/cpp/runner.cpp
@@ -317,16 +317,16 @@ int main( void ) {
317
len = 4000;
318
319
// Allocate arrays:
320
- x = (double*) malloc( len * sizeof(double) );
+ x = (double *) malloc( len * sizeof(double) );
321
if ( x == NULL ) {
322
printf( "Error allocating memory.\n" );
323
exit( 1 );
324
}
325
326
- rand_array_f64( x, len, 0.0, 0.99);
+ rand_array_f64( x, len, 0.0, 0.99 );
327
generate( x, len, "medium_positive.json" );
328
329
- rand_array_f64( x, len, 0.99, 0.999999);
+ rand_array_f64( x, len, 0.99, 0.999999 );
330
generate( x, len, "close_to_unity.json" );
331
332
// Free allocated memory:
0 commit comments