3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

Reactivated smt.max_conflicts option.

Partially fixes #216.
This commit is contained in:
Christoph M. Wintersteiger 2015-09-17 14:08:04 +01:00
parent f3441c6a9b
commit 05d9e188f8
2 changed files with 2 additions and 0 deletions

View file

@ -35,6 +35,7 @@ void smt_params::updt_local_params(params_ref const & _p) {
m_delay_units_threshold = p.delay_units_threshold();
m_preprocess = _p.get_bool("preprocess", true); // hidden parameter
m_timeout = p.timeout();
m_max_conflicts = p.max_conflicts();
m_core_validate = p.core_validate();
model_params mp(_p);
m_model_compact = mp.compact();