3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-28 00:48:45 +00:00

enable propagation when there are changed columns

- to fix bug reported by Nikhil Swamy/F*
- deal with some compiler warnings by adding annotations
This commit is contained in:
Nikolaj Bjorner 2025-01-12 13:30:31 -08:00
parent 558758fcf1
commit 85356c5548
3 changed files with 9 additions and 2 deletions

View file

@ -2131,7 +2131,7 @@ public:
}
bool can_propagate_core() {
return m_asserted_atoms.size() > m_asserted_qhead || m_new_def;
return m_asserted_atoms.size() > m_asserted_qhead || m_new_def || lp().has_changed_columns();
}
bool propagate() {