mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Try to get rid of random2.py.
See https://github.com/shlomif/PySolFC/issues/88 . Tests currently fail with python3.
This commit is contained in:
parent
5a8b4b1708
commit
8334c42a23
1 changed files with 5 additions and 8 deletions
|
@ -27,12 +27,7 @@ import sys
|
||||||
import re
|
import re
|
||||||
import time
|
import time
|
||||||
from pysollib.mfxutil import SubclassResponsibility
|
from pysollib.mfxutil import SubclassResponsibility
|
||||||
try:
|
import random
|
||||||
import random2
|
|
||||||
except ImportError:
|
|
||||||
raise ImportError(
|
|
||||||
"You need to install " +
|
|
||||||
"https://pypi.python.org/pypi/random2 using pip or similar.")
|
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info > (3,):
|
if sys.version_info > (3,):
|
||||||
|
@ -101,13 +96,15 @@ class BasicRandom:
|
||||||
# * uses the standard python module `random'
|
# * uses the standard python module `random'
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
|
|
||||||
class MTRandom(BasicRandom, random2.Random):
|
class MTRandom(BasicRandom, random.Random):
|
||||||
|
|
||||||
def __init__(self, seed=None):
|
def __init__(self, seed=None):
|
||||||
if seed is None:
|
if seed is None:
|
||||||
seed = self._getRandomSeed()
|
seed = self._getRandomSeed()
|
||||||
BasicRandom.__init__(self)
|
BasicRandom.__init__(self)
|
||||||
random2.Random.__init__(self, seed)
|
random.Random.__init__(self, seed)
|
||||||
|
if sys.version_info > (3,):
|
||||||
|
self.seed(a=seed, version=1)
|
||||||
self.initial_seed = seed
|
self.initial_seed = seed
|
||||||
self.initial_state = self.getstate()
|
self.initial_state = self.getstate()
|
||||||
self.origin = self.ORIGIN_UNKNOWN
|
self.origin = self.ORIGIN_UNKNOWN
|
||||||
|
|
Loading…
Add table
Reference in a new issue