removed MT19937 which is not used anymore. Changed N from 624 to 1024 to reduce cost

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6497 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-07-11 20:59:18 +00:00
parent 207d86543c
commit 4c53d8dc5b
2 changed files with 4 additions and 37 deletions

View file

@ -51,12 +51,7 @@ class RSRandom
private:
static RsMutex rndMtx ;
static const uint32_t N = 624;
static const uint32_t M = 397;
static const uint32_t MATRIX_A = 0x9908b0dfUL;
static const uint32_t UMASK = 0x80000000UL;
static const uint32_t LMASK = 0x7fffffffUL;
static const uint32_t N = 1024;
static void locked_next_state() ;
static uint32_t index ;