3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-06 21:31:26 +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,6 +43,10 @@ def run(job):
import sby_engine_smtbmc
sby_engine_smtbmc.run("prove", job, engine_idx, engine)
elif engine[0] == "aiger":
import sby_engine_aiger
sby_engine_aiger.run("prove", job, engine_idx, engine)
elif engine[0] == "abc":
import sby_engine_abc
sby_engine_abc.run("prove", job, engine_idx, engine)