mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 05:08:56 +00:00
qbfsat: Add -solver-option
option.
This commit is contained in:
parent
f037985337
commit
2f786fcfac
2 changed files with 15 additions and 1 deletions
|
@ -31,6 +31,7 @@ struct QbfSolveOptions {
|
|||
bool nobisection = false, sat = false, unsat = false, show_smtbmc = false;
|
||||
enum Solver{Z3, Yices, CVC4} solver = Yices;
|
||||
enum OptimizationLevel{O0, O1, O2} oflag = O0;
|
||||
dict<std::string, std::string> solver_options;
|
||||
int timeout = 0;
|
||||
std::string specialize_soln_file = "";
|
||||
std::string write_soln_soln_file = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue