mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
checkpoint
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ef0ee9a0c4
commit
c096fb534b
4 changed files with 465 additions and 320 deletions
|
@ -139,6 +139,10 @@ bool expr_substitution::find(expr * c, expr * & def, proof * & def_pr, expr_depe
|
|||
return false;
|
||||
}
|
||||
|
||||
bool expr_substitution::contains(expr * s) {
|
||||
return m_subst.contains(s);
|
||||
}
|
||||
|
||||
void expr_substitution::reset() {
|
||||
dec_ref_map_key_values(m_manager, m_subst);
|
||||
if (proofs_enabled())
|
||||
|
|
|
@ -47,6 +47,7 @@ public:
|
|||
void erase(expr * s);
|
||||
bool find(expr * s, expr * & def, proof * & def_pr);
|
||||
bool find(expr * s, expr * & def, proof * & def_pr, expr_dependency * & def_dep);
|
||||
bool contains(expr * s);
|
||||
void reset();
|
||||
void cleanup();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue