mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
add theory_str::check_contain_by_eq_nodes
This commit is contained in:
parent
f48377e780
commit
d28ef1d471
3 changed files with 394 additions and 20 deletions
|
@ -46,6 +46,11 @@ public:
|
|||
bool contains(obj_pair const & p) const { return m_set.contains(p); }
|
||||
void reset() { m_set.reset(); }
|
||||
bool empty() const { return m_set.empty(); }
|
||||
|
||||
typedef typename chashtable<obj_pair, hash_proc, eq_proc>::iterator iterator;
|
||||
|
||||
iterator begin() { return m_set.begin(); }
|
||||
iterator end() { return m_set.end(); }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue