mirror of
https://github.com/Z3Prover/z3
synced 2026-07-15 03:25:43 +00:00
Fix FP E-matching regression: remove redundant m_new_def from theory_lra::can_propagate_core()
This commit is contained in:
parent
85e02a312f
commit
f92a0e2d46
1 changed files with 1 additions and 1 deletions
|
|
@ -2237,7 +2237,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
bool can_propagate_core() {
|
bool can_propagate_core() {
|
||||||
return m_asserted_atoms.size() > m_asserted_qhead || m_new_def || lp().has_changed_columns() ||
|
return m_asserted_atoms.size() > m_asserted_qhead || lp().has_changed_columns() ||
|
||||||
m_delay_ineqs_qhead < m_delay_ineqs.size();
|
m_delay_ineqs_qhead < m_delay_ineqs.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue