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

fix #2879. relax benign restriction on eq propagation justification

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-23 14:00:14 -06:00
parent 794aafa6f8
commit f9917edf6c
3 changed files with 2 additions and 23 deletions

View file

@ -181,7 +181,6 @@ namespace smt {
enode * m_node2;
public:
eq_propagation_justification(enode * n1, enode * n2):m_node1(n1), m_node2(n2) {
SASSERT(n1 != n2);
}
void get_antecedents(conflict_resolution & cr) override;