mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9e505d60f0
commit
efbb382646
4 changed files with 64 additions and 49 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue