A little mistake has been corrected
This commit is contained in:
parent
df6c600860
commit
de33c67f0e
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ public :
|
||||||
@see reseed
|
@see reseed
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eoRng(uint32 s = (uint32) time(0) ) : state(0), next(0), left(-1), cached(false), N(624), M(397), K((0x9908B0DFU) {
|
eoRng(uint32 s = (uint32) time(0) ) : state(0), next(0), left(-1), cached(false), N(624), M(397), K((0x9908B0DFU)) {
|
||||||
state = new uint32[N+1];
|
state = new uint32[N+1];
|
||||||
initialize(s);
|
initialize(s);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue