Is the library in c++11 portable? I have avoided rand() because I heard it wasn't portable.
|
How do you define "portable"? If by "portable", you mean "will produce binary identical sequences of random numbers given the same input", then yes, That being said, as @PeteBecker pointed out, the distributions themselves are not so well-defined. So while Of course, if you need consistency, you can always define your own distribution. |
|||||
|
|
The random number engines described in |
|||
|
|
|
You can generate "identical sequences of random numbers given the same input" (from @Nicol Bolas) with std::mt19937 (Mersenne Twister) for example. You definitely couldn't do that with Related questions: |
|||
|
|