DRandom constructor

DRandom()

Create DRandom

Implementation

DRandom() {
  _init();
  int i = math.Random().nextInt((1 << 32) - 1);
  int seed = (i * mBig).floor().toInt();
  _seed(seed);
}