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

add back assertion for #3849

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-09 18:08:40 -07:00
parent 4651bffafc
commit c4b52edb29
2 changed files with 3 additions and 0 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 != 2);
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 != 2);
return m_lemma_id;
}