File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lib/node_modules/@stdlib/stats/base/dists/exponential/kurtosis/benchmark/c Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ static void print_version( void ) {
3838/**
3939* Prints the TAP summary.
4040*
41- * @param total total number of tests
42- * @param passing total number of passing tests
41+ * @param total total number of tests
42+ * @param passing total number of passing tests
4343*/
4444static void print_summary ( int total , int passing ) {
4545 printf ( "#\n" );
@@ -78,9 +78,9 @@ static double tic( void ) {
7878/**
7979* Generates a random number on the interval [min,max).
8080*
81- * @param min minimum value (inclusive)
82- * @param max maximum value (exclusive)
83- * @return random number
81+ * @param min minimum value (inclusive)
82+ * @param max maximum value (exclusive)
83+ * @return random number
8484*/
8585static double random_uniform ( const double min , const double max ) {
8686 double v = (double )rand () / ( (double )RAND_MAX + 1.0 );
You can’t perform that action at this time.
0 commit comments