simplerandom
simplerandom copied to clipboard
Simple pseudo-random number generators in C and Python
See [Xorshift](https://en.wikipedia.org/wiki/Xorshift) (Wikipedia). Another class of simple RNG by [George Marsaglia](https://en.wikipedia.org/wiki/George_Marsaglia).
Use the standard C++11 random number generator API.
Not sure what changed, but with the newest cython version, I get this: ``` Error compiling Cython file: ------------------------------------------------------------ ... try: import numbers except ImportError: def isint(value): return isinstance(value, int)...