3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

misc bugfixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-12-28 14:24:52 -08:00
parent c0da732cea
commit 20afc55b41
12 changed files with 149 additions and 147 deletions

View file

@ -485,7 +485,8 @@ namespace euf {
if (n->get_root() == b->get_root() && offs == offset) {
while (j != UINT_MAX) {
auto [x, y, j2] = just[j];
consumer(x, y);
if (x != y)
consumer(x, y);
j = j2;
}
for (auto const& [n, offset, j] : m_jtodo) {