mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
add parameter incremental to ensure preprocessing does not interefere with adding constraints during search
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2cf0c8173b
commit
ac822acb0f
3 changed files with 14 additions and 17 deletions
|
@ -194,11 +194,12 @@ namespace opt {
|
|||
func_decl_ref_vector m_objective_refs;
|
||||
expr_ref_vector m_core;
|
||||
tactic_ref m_simplify;
|
||||
bool m_enable_sat { true } ;
|
||||
bool m_enable_sls { false };
|
||||
bool m_is_clausal { false };
|
||||
bool m_pp_neat { true };
|
||||
bool m_pp_wcnf { false };
|
||||
bool m_enable_sat = true;
|
||||
bool m_enable_sls = false;
|
||||
bool m_is_clausal = false;
|
||||
bool m_pp_neat = false;
|
||||
bool m_pp_wcnf = false;
|
||||
bool m_incremental = false;
|
||||
symbol m_maxsat_engine;
|
||||
symbol m_logic;
|
||||
svector<symbol> m_labels;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue