public RandomBase(IRandomable rand)
 {
     this.rand = rand;
 }
        /* Constructors */

        public RandomBase()
        {
            this.rand = new XorShift128();
        }