3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 02:04:43 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-04-27 22:52:59 -07:00
parent 9e505d60f0
commit efbb382646
4 changed files with 64 additions and 49 deletions

View file

@ -114,6 +114,7 @@ namespace polysat {
if (is_negative())
return lhs.is_val() && rhs.is_val() && !(lhs.val() > rhs.val());
UNREACHABLE();
return false;
}
bool ule_constraint::is_always_false() {
@ -134,6 +135,7 @@ namespace polysat {
if (is_negative())
return p.is_val() && q.is_val() && p.val() > q.val();
UNREACHABLE();
return false;
}
}