Improvements to smtio.py
This commit is contained in:
parent
482b2299d5
commit
e063f64ea2
|
@ -22,7 +22,7 @@ python3 async.py [options]
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
opts, args = getopt.getopt(sys.argv[1:], "s:t:vdp")
|
opts, args = getopt.getopt(sys.argv[1:], so.optstr + "t:")
|
||||||
except:
|
except:
|
||||||
usage()
|
usage()
|
||||||
|
|
||||||
|
|
|
@ -219,6 +219,7 @@ class smtio:
|
||||||
|
|
||||||
class smtopts:
|
class smtopts:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
self.optstr = "s:d:vp"
|
||||||
self.solver = "yices"
|
self.solver = "yices"
|
||||||
self.debug_print = False
|
self.debug_print = False
|
||||||
self.debug_file = None
|
self.debug_file = None
|
||||||
|
|
|
@ -18,7 +18,7 @@ python3 sync.py [options]
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
opts, args = getopt.getopt(sys.argv[1:], "s:t:vdp")
|
opts, args = getopt.getopt(sys.argv[1:], so.optstr + "t:")
|
||||||
except:
|
except:
|
||||||
usage()
|
usage()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue