1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Initial work for issue #47 .

Define a custom deal index.
This commit is contained in:
Shlomi Fish 2017-12-18 16:41:11 +02:00
parent 424bb6c622
commit b87e8dd5a8

View file

@ -287,9 +287,12 @@ def constructRandom(s):
MS_LONG_BIT = (long(1) << 1000)
CUSTOM_BIT = (long(1) << 999)
def random__str2long(s):
if s == 'Custom':
return CUSTOM_BIT | MS_LONG_BIT
m = _match_ms(s)
if m:
return (long(m.group(1)) | MS_LONG_BIT)
@ -299,6 +302,8 @@ def random__str2long(s):
def random__long2str(l):
if ((l & MS_LONG_BIT) != 0):
if ((l & CUSTOM_BIT) != 0):
return 'Custom'
return "ms" + str(l & (~ MS_LONG_BIT))
else:
return str(l)