3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-07-27 08:26:42 +02:00
parent 1e6b13741c
commit 5f6bb3db3e

View file

@ -141,6 +141,8 @@ namespace nlsat {
auto& a = *to_ineq_atom(a1);
if (a.size() != 2)
continue;
if (a.is_root_atom())
continue;
auto* p = a.p(0);
auto* q = a.p(1);
@ -229,6 +231,10 @@ namespace nlsat {
}
break;
}
default:
SASSERT(a.is_root_atom());
UNREACHABLE();
break;
}
IF_VERBOSE(3,
s.display(verbose_stream(), c) << " ->\n";