mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 20:50:50 +00:00
API to find pob in pob_manager
This commit is contained in:
parent
5bc57238a6
commit
f6dcc6fc72
2 changed files with 17 additions and 2 deletions
|
@ -304,6 +304,7 @@ class pred_transformer {
|
|||
}
|
||||
unsigned size() const {return m_pinned.size();}
|
||||
|
||||
pob* find_pob(pob* parent, expr *post);
|
||||
};
|
||||
|
||||
class pt_rule {
|
||||
|
@ -601,7 +602,6 @@ class pob {
|
|||
std::map<unsigned, stopwatch> m_expand_watches;
|
||||
unsigned m_blocked_lvl;
|
||||
|
||||
void set_post(expr *post);
|
||||
public:
|
||||
pob (pob* parent, pred_transformer& pt,
|
||||
unsigned level, unsigned depth=0, bool add_to_parent=true);
|
||||
|
@ -610,6 +610,7 @@ public:
|
|||
|
||||
// TBD: move into constructor and make private
|
||||
void set_post(expr *post, app_ref_vector const &binding);
|
||||
void set_post(expr *post);
|
||||
|
||||
unsigned weakness() {return m_weakness;}
|
||||
void bump_weakness() {m_weakness++;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue