3
0
Fork 0
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:
copilot-swe-agent[bot] 2026-07-07 20:57:47 +00:00 committed by GitHub
parent 85e02a312f
commit f92a0e2d46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();
} }