diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 18:15:04 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 18:15:04 +0000 |
commit | 79843b51267d7a8faf8e9dcee09fa5e167373e6d (patch) | |
tree | cc317f202fa6b7b68908af9bee1848355681db78 /src/tests/random.cpp | |
parent | ba177923d7b60800ae2e01f80fc10dc8ad1594bb (diff) | |
download | libbu++-79843b51267d7a8faf8e9dcee09fa5e167373e6d.tar.gz libbu++-79843b51267d7a8faf8e9dcee09fa5e167373e6d.tar.bz2 libbu++-79843b51267d7a8faf8e9dcee09fa5e167373e6d.tar.xz libbu++-79843b51267d7a8faf8e9dcee09fa5e167373e6d.zip |
Added seed parameter to constructor of two PRNGs. Also fixed horrible mistake
in RandomBasic.
Diffstat (limited to 'src/tests/random.cpp')
-rw-r--r-- | src/tests/random.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/random.cpp b/src/tests/random.cpp index e48c543..95cdb0a 100644 --- a/src/tests/random.cpp +++ b/src/tests/random.cpp | |||
@@ -15,7 +15,7 @@ void coverage() | |||
15 | uint32_t uBucket[78]; | 15 | uint32_t uBucket[78]; |
16 | memset( uBucket, 0, sizeof(uint32_t)*78 ); | 16 | memset( uBucket, 0, sizeof(uint32_t)*78 ); |
17 | 17 | ||
18 | for( int j = 0; j < 1000000; j++ ) | 18 | for( int j = 0; j < 1000; j++ ) |
19 | { | 19 | { |
20 | uBucket[(int)(((uint32_t)rand.rand())/(double)(0xfffffffful)*78+0.5)]++; | 20 | uBucket[(int)(((uint32_t)rand.rand())/(double)(0xfffffffful)*78+0.5)]++; |
21 | } | 21 | } |