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:
parent
558758fcf1
commit
85356c5548
3 changed files with 9 additions and 2 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue