So far I've been using the C# Mersenne Twister found here:
http://www.centerspace.net/resources.php
I just discovered SFMT which is supposed to be twice as fast here:
http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/
Can anyone point me at a C# implementation of SFMT?
My requirements are to generate an integer between (and including) 0 and 2^20 (1048576).
I need to do this trillions of times everyday for a simulation running on a 24 hour clock so I am prepared to spend days tweaking this to perfection.
Currently I've tweaked the Center Space Mersenne Twister by adding a new method:
public uint Next20()
{
return (uint)(genrand_int32() >> 12);
}
To fit my requirements. The method genrand_int32() I'd like to produce my own version genrand_int20() that generates an integer between (and including) 0 and 2^20 to save on the cast above and shift but I don't understand the maths and exactly how to do this. Can anyone help?
Also is using a uint going to be faster that int, or is just a matter of addressable numbers? because I only need up to 1048576, am only concerned with speed.
Also this will be running on a Windows Server 2003 R2 SP2 (32bit) box on .net 2. Processor AMD Opertor 275 (4 core).
Thanks
