3
0
Fork 0
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:
Alberto Gonzalez 2020-06-29 04:41:18 +00:00
parent f037985337
commit 2f786fcfac
No known key found for this signature in database
GPG key ID: 8395A8BA109708B2
2 changed files with 15 additions and 1 deletions

View file

@ -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 = "";