aboutsummaryrefslogtreecommitdiff
path: root/rng.cpp
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-08 13:46:59 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-08 13:52:05 +0200
commit00c059d4554f70fc52d94ff1d5dd28976bf857fb (patch)
tree40d5ddc83133892a87503b370bebf2cb9990ebef /rng.cpp
parent264fb4b2bb5480a28646a8465013647b2e034cf4 (diff)
Code cleanup
Diffstat (limited to 'rng.cpp')
-rw-r--r--rng.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/rng.cpp b/rng.cpp
index a6c61f5..e06b8be 100644
--- a/rng.cpp
+++ b/rng.cpp
@@ -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;
}