simplerandom icon indicating copy to clipboard operation
simplerandom copied to clipboard

Simple pseudo-random number generators in C and Python

Results 3 simplerandom issues
Sort by recently updated
recently updated
newest added

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)...