3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 13:40:52 +00:00

allow incremental mode override

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-06 15:00:52 -08:00
parent 5813e22032
commit 303157d3b7
9 changed files with 34 additions and 19 deletions

View file

@ -339,6 +339,7 @@ private:
m_allsat = false;
m_num_unsat = 0;
m_exn_code = 0;
m_params.set_bool("override_incremental", true);
}
void close_branch(solver_state& s, lbool status) {
@ -538,7 +539,7 @@ public:
parallel_tactic(ast_manager& m, params_ref const& p) :
m_manager(m),
m_params(p) {
init();
init();
}
void operator ()(const goal_ref & g,goal_ref_buffer & result,model_converter_ref & mc,proof_converter_ref & pc,expr_dependency_ref & dep) {