mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
add !=
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9f964be3f4
commit
74f0665a0b
|
@ -69,6 +69,7 @@ namespace sat {
|
|||
bool is_false() const { return 0 == (table_mask() & m_table); }
|
||||
|
||||
bool operator==(cut const& other) const;
|
||||
bool operator!=(cut const& other) const { return !(*this == other); }
|
||||
unsigned hash() const;
|
||||
struct eq_proc {
|
||||
bool operator()(cut const& a, cut const& b) const { return a == b; }
|
||||
|
|
Loading…
Reference in a new issue