aboutsummaryrefslogtreecommitdiff
path: root/rng.cpp
diff options
context:
space:
mode:
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;
}