diff options
Diffstat (limited to 'rng.cpp')
-rw-r--r-- | rng.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -1,5 +1,3 @@ -// #include <iostream> -// #include <bitset> #include <cstring> #include <cassert> #include "rng.h" @@ -61,7 +59,6 @@ uint32_t KeyRng::get(){ state^=rotr64(state,11); //tempering state^=rotl64(state,7)&0x9d2c5680; state^=rotr64(state,18); - // cerr<<bitset<64>(state)<<endl; return state>>32; } |