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:
parent
ea73acef45
commit
f51c07adf6
2 changed files with 11 additions and 8 deletions
|
@ -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;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue