3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-09 20:50:50 +00:00

don't reset core after it has been populated for the cut #3451 and presumably other bugs

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-23 13:19:28 -07:00 committed by Lev Nachmanson
parent 38eca3b66a
commit e16c62d6e2
2 changed files with 5 additions and 3 deletions

View file

@ -454,6 +454,7 @@ namespace smt {
display_lemma_as_smt_problem(out, num_antecedents, antecedents, consequent, logic);
TRACE("non_linear", display_lemma_as_smt_problem(tout, num_antecedents, antecedents, consequent, logic););
out.close();
SASSERT(m_lemma_id != 78);
return m_lemma_id;
}
@ -497,6 +498,7 @@ namespace smt {
);
display_lemma_as_smt_problem(out, num_antecedents, antecedents, num_eq_antecedents, eq_antecedents, consequent, logic);
out.close();
SASSERT(m_lemma_id != 78);
return m_lemma_id;
}