3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-22 21:05:30 +00:00

Yices 2 is the new default solver for yosys-smtbmc

This commit is contained in:
Clifford Wolf 2017-05-27 12:04:43 +02:00
parent 7f871ec89a
commit a2c1dd3f91
5 changed files with 19 additions and 7 deletions

View file

@ -22,7 +22,7 @@ from sby_core import SbyTask
def run(job):
job.handle_int_option("depth", 20)
job.handle_int_option("append", 0)
job.handle_str_option("aigsmt", "z3")
job.handle_str_option("aigsmt", "yices")
for engine_idx in range(len(job.engines)):
engine = job.engines[engine_idx]

View file

@ -20,7 +20,7 @@ import re, os, getopt
from sby_core import SbyTask
def run(job):
job.handle_str_option("aigsmt", "z3")
job.handle_str_option("aigsmt", "yices")
job.status = "UNKNOWN"

View file

@ -22,7 +22,7 @@ from sby_core import SbyTask
def run(job):
job.handle_int_option("depth", 20)
job.handle_int_option("append", 0)
job.handle_str_option("aigsmt", "z3")
job.handle_str_option("aigsmt", "yices")
job.status = "UNKNOWN"