mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fixes to failure conditions for unification
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fe27ca1dd0
commit
528efbb535
|
@ -214,7 +214,8 @@ namespace mbp {
|
||||||
expr* x = a->get_arg(i);
|
expr* x = a->get_arg(i);
|
||||||
expr* y = b->get_arg(i);
|
expr* y = b->get_arg(i);
|
||||||
todo.push_back({x, y});
|
todo.push_back({x, y});
|
||||||
}
|
}
|
||||||
|
bool failed = false;
|
||||||
while (!todo.empty()) {
|
while (!todo.empty()) {
|
||||||
auto [x, y] = todo.back();
|
auto [x, y] = todo.back();
|
||||||
todo.pop_back();
|
todo.pop_back();
|
||||||
|
@ -223,8 +224,10 @@ namespace mbp {
|
||||||
SASSERT(ry);
|
SASSERT(ry);
|
||||||
if (rx == ry)
|
if (rx == ry)
|
||||||
continue;
|
continue;
|
||||||
if (rx)
|
if (rx) {
|
||||||
break; // fail
|
failed = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (m_parents[x].size() > 1)
|
if (m_parents[x].size() > 1)
|
||||||
// a crude safey hatch to preserve models
|
// a crude safey hatch to preserve models
|
||||||
// we could require that every parent of x
|
// we could require that every parent of x
|
||||||
|
@ -233,16 +236,20 @@ namespace mbp {
|
||||||
break;
|
break;
|
||||||
expr* s = nullptr;
|
expr* s = nullptr;
|
||||||
if (soln.find(x, s)) {
|
if (soln.find(x, s)) {
|
||||||
if (s != ry)
|
if (s != ry) {
|
||||||
|
failed = true;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (is_var(x)) {
|
if (is_var(x)) {
|
||||||
soln.insert(x, ry);
|
soln.insert(x, ry);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!same_decl(x, y))
|
if (!same_decl(x, y)) {
|
||||||
|
failed = true;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
app* ax = to_app(x);
|
app* ax = to_app(x);
|
||||||
app* ay = to_app(y);
|
app* ay = to_app(y);
|
||||||
for (unsigned i = 0; i < ax->get_num_args(); ++i)
|
for (unsigned i = 0; i < ax->get_num_args(); ++i)
|
||||||
|
@ -257,7 +264,7 @@ namespace mbp {
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
if (todo.empty() && !soln.empty()) {
|
if (!failed && todo.empty() && !soln.empty()) {
|
||||||
for (auto [key, value] : soln) {
|
for (auto [key, value] : soln) {
|
||||||
vars.erase(to_app(key));
|
vars.erase(to_app(key));
|
||||||
defs.push_back( { expr_ref(key, m), expr_ref(value, m) });
|
defs.push_back( { expr_ref(key, m), expr_ref(value, m) });
|
||||||
|
|
Loading…
Reference in a new issue