Renamed randnormal to randomnormal

--HG--
branch : math-randobject
This commit is contained in:
Alex Szpakowski
2013-04-15 14:57:20 -03:00
parent 3046981fce
commit d98e2cb40c
8 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -96,12 +96,12 @@ public:
* @param stddev Standard deviation of the distribution.
* @return Normally distributed random number with mean 0 and variance (stddev)².
**/
double randnormal(double stddev);
double randomnormal(double stddev);
private:
uint64 rng_state;
double last_randnormal;
double last_randomnormal;
}; // RandomGenerator