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

fix build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-25 13:19:55 -07:00
parent ecd3315a74
commit ab10616b77
2 changed files with 17 additions and 15 deletions

View file

@ -163,8 +163,10 @@ namespace euf_sat {
s().set_external(lit.var());
return n;
}
if (is_app(e) && to_app(e)->get_num_args() > 0)
if (is_app(e) && to_app(e)->get_num_args() > 0) {
m_stack.push_back(frame(e));
return nullptr;
}
n = m_egraph.mk(e, 0, nullptr);
attach_bool_var(si, n);
return n;