3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

introduce fresh term when none is available in context or model to fix #2456

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-08-04 12:00:48 -07:00
parent 01920abf46
commit bc3b0f6e33
2 changed files with 7 additions and 6 deletions

View file

@ -54,6 +54,7 @@ namespace smt {
bool m_has_rec_fun;
proto_model * m_curr_model;
obj_map<expr, expr *> m_value2expr;
expr_ref_vector m_fresh_exprs;
friend class instantiation_set;