-
Simple repro case:
```
ranlux24 rl(1234);
for(int i=0; i
-
I guess a useful feature we can look at adding is to provide a way to save (and restore) the internal emulator state. We do not have even have to support it during an episode, but it would be nice if …
-
Our random number generator is absed on 32Bit random numbers. 64Bit may sometimes be needed, e.g. for the random distribution in healpix pixels. The current 64Bit Random capability is a hack that use …
-
This issue was discussed in a now-closed ticket #24. Since it has never been solved, it is very likely that someone will come across it again.
For more details see my comment https://github.com/TRIQ…
-
This code:
import 'dart:math';
main() {
var rand = new Random(new DateTime.now().millisecondsSinceEpoch);
for (var i = 0; i < 10; i++) print(rand.nextDouble());
}
Is comp…
-
With this simple C++11 program
``` C++
#include
#include
int main()
{
std::mt19937 source(42);
std::uniform_int_distribution dist(0, 10);
//std::cout
-
The Dart VM pseudorandom number generator is very very bad. It generates
approximately one pseudorandom bit per call. The bits of consecutive random numbers are almost all the same, just shifted. W…
-
Investigate a faster, platform-independent hash function instead of `numpy.random`, and use it instead in Coordinate Encoder.
-
Right now the distributions in `scipy.stats` like `rv_continuous` and `rv_discrete` don't support a `random_state` parameter. I am aware that the global random state can be set with `numpy.random.seed…
-
`rand()` is not reentrant on Unix systems. `rand_r()` should be used instead when not on Windows.