mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
fix build break based on new assertion in smt-eq-justification
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2ec9944edd
commit
71d80ab47f
|
@ -1681,6 +1681,7 @@ bool theory_seq::solve_binary_eq(expr_ref_vector const& ls, expr_ref_vector cons
|
||||||
bool has_conflict = false;
|
bool has_conflict = false;
|
||||||
for (unsigned j = 0; !has_conflict && j < sz; ++j) {
|
for (unsigned j = 0; !has_conflict && j < sz; ++j) {
|
||||||
unsigned j1 = (offset + j) % sz;
|
unsigned j1 = (offset + j) % sz;
|
||||||
|
if (xs[j] == ys[j1]) continue;
|
||||||
literal eq = mk_eq(xs[j], ys[j1], false);
|
literal eq = mk_eq(xs[j], ys[j1], false);
|
||||||
switch (ctx.get_assignment(eq)) {
|
switch (ctx.get_assignment(eq)) {
|
||||||
case l_false:
|
case l_false:
|
||||||
|
|
Loading…
Reference in a new issue