1
0
Fork 0
mirror of https://github.com/YosysHQ/picorv32.git synced 2025-01-03 03:43:38 -05:00

Improvements to smtio.py

This commit is contained in:
Clifford Wolf 2015-09-18 20:19:14 +02:00
parent 482b2299d5
commit e063f64ea2
3 changed files with 3 additions and 2 deletions
scripts/smt2-bmc

View file

@ -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()

View file

@ -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

View file

@ -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()