mirror of
https://github.com/Z3Prover/z3
synced 2026-05-17 23:49:28 +00:00
fix test build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5f7e14315d
commit
ace4105a90
3 changed files with 14 additions and 10 deletions
|
|
@ -345,6 +345,9 @@ namespace seq {
|
|||
struct le {
|
||||
expr_ref lhs;
|
||||
expr_ref rhs;
|
||||
bool operator==(le const &other) const {
|
||||
return lhs == other.lhs && rhs == other.rhs;
|
||||
}
|
||||
};
|
||||
|
||||
using dep_source = std::variant<sat::literal, enode_pair, le>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue