3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 01:40:22 +00:00

several fixes to proof logging in legacy solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-01-08 16:11:31 -08:00
parent 61b90e64b2
commit 1ddef117a2
3 changed files with 29 additions and 7 deletions

View file

@ -405,13 +405,15 @@ namespace smt {
m_fparams->m_relevancy_lvl = 0; // no relevancy since the model checking problems are quantifier free
m_fparams->m_case_split_strategy = CS_ACTIVITY; // avoid warning messages about smt.case_split >= 3.
m_fparams->m_axioms2files = false;
m_fparams->m_lemmas2console = false;
m_fparams->m_lemmas2console = false;
m_fparams->m_proof_log = symbol::null;
}
if (!m_aux_context) {
symbol logic;
params_ref p;
p.set_bool("solver.axioms2files", false);
p.set_bool("solver.lemmas2console", false);
p.set_sym("solver.proof.log", symbol::null);
m_aux_context = m_context->mk_fresh(&logic, m_fparams.get(), p);
}
}