diff options
Diffstat (limited to '')
-rw-r--r-- | src/stable/random.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/stable/random.h b/src/stable/random.h index ba26f21..43b8917 100644 --- a/src/stable/random.h +++ b/src/stable/random.h | |||
@@ -44,8 +44,11 @@ namespace Bu | |||
44 | 44 | ||
45 | RandomBase &getGenerator() { return *pGen; } | 45 | RandomBase &getGenerator() { return *pGen; } |
46 | 46 | ||
47 | static int32_t rand(); | ||
48 | static void seed( int32_t iSeed ); | 47 | static void seed( int32_t iSeed ); |
48 | static int32_t rand(); | ||
49 | static int32_t rand( int32_t iMax ); | ||
50 | static int32_t rand( int32_t iMin, int32_t iMax ); | ||
51 | static double randNorm(); | ||
49 | 52 | ||
50 | private: | 53 | private: |
51 | void checkInit(); | 54 | void checkInit(); |