Skip to content

Commit a670094

Browse files
chore: update bench
1 parent a86ed82 commit a670094

File tree

1 file changed

+4
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/bernoulli/skewness/benchmark/c

1 file changed

+4
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/skewness/benchmark/c/benchmark.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ static double tic( void ) {
7575
}
7676

7777
/**
78-
* Generates a random number on the interval [0,1).
78+
* Generates a random number on the interval [min,max).
7979
*
80-
* @return random number
80+
* @param min minimum value (inclusive)
81+
* @param max maximum value (exclusive)
82+
* @return random number
8183
*/
8284
static double random_uniform( const double min, const double max ) {
8385
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );

0 commit comments

Comments
 (0)