mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Add "smtbmc ... -- ..." feature (for "raw" smtbmc options)
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
b50f4f3d10
commit
4eb91d5b88
|
@ -241,6 +241,8 @@ The following solvers are currently supported by ``yosys-smtbmc``:
|
||||||
* mathsat
|
* mathsat
|
||||||
* cvc4
|
* cvc4
|
||||||
|
|
||||||
|
Any additional options after ``--`` are passed to ``yosys-smtbmc`` as-is.
|
||||||
|
|
||||||
``aiger`` engine
|
``aiger`` engine
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
|
@ -67,10 +67,17 @@ def run(mode, job, engine_idx, engine):
|
||||||
else:
|
else:
|
||||||
job.error("Invalid smtbmc options %s." % o)
|
job.error("Invalid smtbmc options %s." % o)
|
||||||
|
|
||||||
|
xtra_opts = False
|
||||||
for i, a in enumerate(args):
|
for i, a in enumerate(args):
|
||||||
if i == 0 and a == "z3" and unroll_opt is None:
|
if i == 0 and a == "z3" and unroll_opt is None:
|
||||||
unroll_opt = False
|
unroll_opt = False
|
||||||
smtbmc_opts += ["-s" if i == 0 else "-S", a]
|
if a == "--":
|
||||||
|
xtra_opts = True
|
||||||
|
continue
|
||||||
|
if xtra_opts:
|
||||||
|
smtbmc_opts.append(a)
|
||||||
|
else:
|
||||||
|
smtbmc_opts += ["-s" if i == 0 else "-S", a]
|
||||||
|
|
||||||
if presat_opt:
|
if presat_opt:
|
||||||
smtbmc_opts += ["--presat"]
|
smtbmc_opts += ["--presat"]
|
||||||
|
|
Loading…
Reference in a new issue