3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-01-25 21:02:25 -08:00
parent f781e93774
commit cf6119cdfd

View file

@ -3148,6 +3148,9 @@ bool theory_seq::solve_nc(unsigned idx) {
if (!linearize(deps, eqs, lits)) {
return false;
}
for (literal& lit : lits) {
lit.neg();
}
for (enode_pair const& p : eqs) {
lits.push_back(~mk_eq(p.first->get_owner(), p.second->get_owner(), false));
}