mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
parent
f781e93774
commit
cf6119cdfd
|
@ -3148,6 +3148,9 @@ bool theory_seq::solve_nc(unsigned idx) {
|
||||||
if (!linearize(deps, eqs, lits)) {
|
if (!linearize(deps, eqs, lits)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
for (literal& lit : lits) {
|
||||||
|
lit.neg();
|
||||||
|
}
|
||||||
for (enode_pair const& p : eqs) {
|
for (enode_pair const& p : eqs) {
|
||||||
lits.push_back(~mk_eq(p.first->get_owner(), p.second->get_owner(), false));
|
lits.push_back(~mk_eq(p.first->get_owner(), p.second->get_owner(), false));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue