mirror of
https://github.com/Z3Prover/z3
synced 2026-07-19 13:35:48 +00:00
updates
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8a48caf742
commit
27f5541b0b
11 changed files with 2176 additions and 80 deletions
|
|
@ -156,6 +156,9 @@ public:
|
|||
// check if two sets are disjoint
|
||||
bool is_disjoint(char_set const& other) const;
|
||||
|
||||
// check if this set is a subset of other (every char in this is also in other)
|
||||
bool is_subset(char_set const& other) const;
|
||||
|
||||
bool operator==(char_set const& other) const { return m_ranges == other.m_ranges; }
|
||||
|
||||
char_set clone() const { char_set r; r.m_ranges = m_ranges; return r; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue