I'm looking for a random number generation algorithm (c++), which requires
- uniformed
- deterministic and invariant on any platform
- you can specify range (min, max)
mt19937 with uniform_int_distribution is close, but the result is not invariant on any platforms.
So I hope you can give me some advices. Thanks in advance.