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

add unit test for #2867

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-24 11:52:41 -07:00
parent 33b644adad
commit a4f668eef0
5 changed files with 98 additions and 31 deletions

View file

@ -3474,7 +3474,6 @@ bool theory_seq::solve_ne(unsigned idx) {
bool theory_seq::solve_nc(unsigned idx) {
nc const& n = m_ncs[idx];
dependency* deps = n.deps();
literal len_gt = n.len_gt();
context& ctx = get_context();
expr_ref c(m);
@ -3509,6 +3508,7 @@ bool theory_seq::solve_nc(unsigned idx) {
}
#else
dependency* deps = n.deps();
if (!canonize(n.contains(), deps, c)) {
return false;
}