3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 13:40:52 +00:00

Moving skolems to lemma

This commit is contained in:
Yakir Vizel 2017-12-18 09:14:38 -05:00 committed by Arie Gurfinkel
parent ea73acef45
commit f51c07adf6
2 changed files with 11 additions and 8 deletions

View file

@ -111,6 +111,7 @@ class lemma {
expr_ref m_body;
expr_ref_vector m_cube;
app_ref_vector m_bindings;
app_ref_vector m_zks;
unsigned m_lvl;
pob_ref m_pob;
bool m_new_pob;
@ -133,6 +134,7 @@ public:
pob_ref &get_pob() {return m_pob;}
inline unsigned weakness();
void set_skolems(app_ref_vector &zks) { m_zks.append(zks); }
unsigned level () const {return m_lvl;}
void set_level (unsigned lvl) {m_lvl = lvl;}
app_ref_vector& get_bindings() {return m_bindings;}