mirror of
https://github.com/Z3Prover/z3
synced 2025-05-01 04:45:52 +00:00
u256, separate viable_set
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
aeec3bb6df
commit
04ce8ca5ef
18 changed files with 374 additions and 167 deletions
|
@ -202,4 +202,12 @@ namespace polysat {
|
|||
return inequality(zero, p(), true, this);
|
||||
}
|
||||
|
||||
unsigned eq_constraint::hash() const {
|
||||
return p().hash();
|
||||
}
|
||||
|
||||
bool eq_constraint::operator==(constraint const& other) const {
|
||||
return other.is_eq() && p() == other.to_eq().p();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue