mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
extra smt params used by spacer
This commit is contained in:
parent
b269e6b35b
commit
ba6594b241
2 changed files with 12 additions and 0 deletions
|
@ -49,6 +49,9 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
|||
else if (_p.get_bool("arith.least_error_pivot", false))
|
||||
m_arith_pivot_strategy = ARITH_PIVOT_LEAST_ERROR;
|
||||
theory_array_params::updt_params(_p);
|
||||
m_dump_benchmarks = false;
|
||||
m_dump_min_time = 0.5;
|
||||
m_dump_recheck = false;
|
||||
}
|
||||
|
||||
void smt_params::updt_params(params_ref const & p) {
|
||||
|
|
|
@ -217,6 +217,15 @@ struct smt_params : public preprocessor_params,
|
|||
bool m_dump_goal_as_smt;
|
||||
bool m_auto_config;
|
||||
|
||||
// -----------------------------------
|
||||
//
|
||||
// Spacer hacking
|
||||
//
|
||||
// -----------------------------------
|
||||
bool m_dump_benchmarks;
|
||||
double m_dump_min_time;
|
||||
bool m_dump_recheck;
|
||||
|
||||
// -----------------------------------
|
||||
//
|
||||
// Solver selection
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue