mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
GCC compilation/keyword fix. Relates to #864
This commit is contained in:
parent
8f95ee01e1
commit
8047f0d91a
|
@ -1413,8 +1413,8 @@ namespace smt {
|
||||||
else {
|
else {
|
||||||
TRACE("add_diseq", display_eq_detail(tout, bool_var2enode(v)););
|
TRACE("add_diseq", display_eq_detail(tout, bool_var2enode(v)););
|
||||||
if (!add_diseq(get_enode(lhs), get_enode(rhs)) && !inconsistent()) {
|
if (!add_diseq(get_enode(lhs), get_enode(rhs)) && !inconsistent()) {
|
||||||
literal not_eq = literal(l.var(), true);
|
literal n_eq = literal(l.var(), true);
|
||||||
set_conflict(b_justification(mk_justification(eq_propagation_justification(get_enode(lhs), get_enode(rhs)))), not_eq);
|
set_conflict(b_justification(mk_justification(eq_propagation_justification(get_enode(lhs), get_enode(rhs)))), n_eq);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue