mirror of
https://github.com/Z3Prover/z3
synced 2026-07-21 14:35:50 +00:00
disregard skolems in instantiation set?
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e87aaa6924
commit
dbe0cf9312
2 changed files with 3 additions and 0 deletions
|
|
@ -1423,6 +1423,8 @@ namespace smt {
|
|||
TRACE(model_finder, tout << "inserting " << mk_pp(e, m) << " into inst set\n");
|
||||
S->insert(e, n->get_generation());
|
||||
}
|
||||
else if (is_app(e) && to_app(e)->get_decl()->is_skolem())
|
||||
;
|
||||
else if (is_uninterp_const(e)) {
|
||||
TRACE(model_finder, tout << "add production " << mk_pp(e, m) << "\n");
|
||||
tn.add_production(e);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue