3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 18:15:32 +00:00
clear m_a1, m_a2 before calls that may affect model.
This commit is contained in:
Nikolaj Bjorner 2023-11-01 03:35:54 -07:00
parent 3af2b36cd7
commit ea915e5b37
2 changed files with 4 additions and 1 deletions

View file

@ -1518,6 +1518,7 @@ namespace arith {
void solver::propagate_nla() {
if (m_nla) {
m_a1 = nullptr; m_a2 = nullptr;
m_nla->propagate();
add_lemmas();
lp().collect_more_rows_for_lp_propagation();