File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
lib/node_modules/@stdlib/stats/base/dists/binomial/variance/benchmark/c Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ static void print_version( void ) {
3737/**
3838* Prints the TAP summary.
3939*
40- * @param total total number of tests
41- * @param passing total number of passing tests
40+ * @param total total number of tests
41+ * @param passing total number of passing tests
4242*/
4343static void print_summary ( int total , int passing ) {
4444 printf ( "#\n" );
@@ -52,7 +52,7 @@ static void print_summary( int total, int passing ) {
5252/**
5353* Prints benchmarks results.
5454*
55- * @param elapsed elapsed time in seconds
55+ * @param elapsed elapsed time in seconds
5656*/
5757static void print_results ( double elapsed ) {
5858 double rate = (double )ITERATIONS / elapsed ;
@@ -77,9 +77,9 @@ static double tic( void ) {
7777/**
7878* Generates a random number on the interval [min,max).
7979*
80- * @param min minimum value (inclusive)
81- * @param max maximum value (exclusive)
82- * @return random number
80+ * @param min minimum value (inclusive)
81+ * @param max maximum value (exclusive)
82+ * @return random number
8383*/
8484static double random_uniform ( const double min , const double max ) {
8585 double v = (double )rand () / ( (double )RAND_MAX + 1.0 );
You can’t perform that action at this time.
0 commit comments