mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix
This commit is contained in:
parent
9fcea37625
commit
d9a63ce786
1 changed files with 2 additions and 0 deletions
|
@ -99,6 +99,8 @@ namespace polysat {
|
|||
bool currently_contains(eval_interval const& other) const {
|
||||
if (is_full())
|
||||
return true;
|
||||
if (other.is_full())
|
||||
return false;
|
||||
// lo <= lo' <= hi' <= hi'
|
||||
if (lo_val() <= other.lo_val() && other.lo_val() <= other.hi_val() && other.hi_val() <= hi_val())
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue