3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-27 23:45:50 +00:00

Add aiger engine

This commit is contained in:
Clifford Wolf 2017-02-19 23:53:01 +01:00
parent 404f8de16d
commit b5be4a5759
9 changed files with 153 additions and 15 deletions

View file

@ -43,14 +43,15 @@ sby [options] <jobname>.sby
--yosys <path_to_executable>
--abc <path_to_executable>
--smtbmc <path_to_executable>
--sprove <path_to_executable>
--suprove <path_to_executable>
--avy <path_to_executable>
configure which executable to use for the respective tool
""")
sys.exit(1)
try:
opts, args = getopt.getopt(sys.argv[1:], "d:bf", ["yosys=",
"abc=", "smtbmc=", "sprove="])
"abc=", "smtbmc=", "suprove="])
except:
usage()
@ -67,8 +68,8 @@ for o, a in opts:
exe_paths["abc"] = a
elif o == "--smtbmc":
exe_paths["smtbmc"] = a
elif o == "--sprove":
exe_paths["sprove"] = a
elif o == "--suprove":
exe_paths["suprove"] = a
else:
usage()