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