mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix compiler warnings
This commit is contained in:
parent
a22fb8a96e
commit
5e034e495f
6 changed files with 3 additions and 7 deletions
|
@ -80,7 +80,7 @@ namespace nlsat {
|
|||
TRACE("nlsat_interval", tout << "lower: "; am.display_decimal(tout, i.m_lower); tout << ", upper: "; am.display_decimal(tout, i.m_upper);
|
||||
tout << "\ns: " << s << "\n";);
|
||||
SASSERT(s <= 0);
|
||||
SASSERT(!is_zero(s) || !i.m_lower_open && !i.m_upper_open);
|
||||
SASSERT(!is_zero(s) || (!i.m_lower_open && !i.m_upper_open));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue