3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-12 17:06:31 -08:00
parent 9f964be3f4
commit 74f0665a0b

View file

@ -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; }