3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 02:15:19 +00:00

Fix #430: disable rewriting of concatentations with constants because it breaks equality propagation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-02-05 11:00:17 +00:00
parent cf970fd76a
commit eae17a43a2

View file

@ -111,6 +111,7 @@ class solve_eqs_tactic : public tactic {
if (m_produce_proofs) {
pr = m().mk_commutativity(m().mk_eq(lhs, rhs));
}
return true;
}
return false;
}