3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00

be a bit more graceful in failing validation #3883

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-09 11:38:06 -07:00
parent def2de69f4
commit f04dfa71a6

View file

@ -4585,6 +4585,10 @@ expr_ref theory_seq::elim_skolem(expr* e) {
todo.pop_back();
continue;
}
else if (m_util.is_skolem(a)) {
IF_VERBOSE(0, verbose_stream() << "unhandled skolem " << mk_pp(a, m) << "\n");
return expr_ref(m.mk_false(), m);
}
args.reset();
for (expr* arg : *to_app(a)) {