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:
parent
def2de69f4
commit
f04dfa71a6
1 changed files with 4 additions and 0 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue