3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

fix compiler warnings

This commit is contained in:
Nuno Lopes 2021-02-19 10:33:41 +00:00
parent a22fb8a96e
commit 5e034e495f
6 changed files with 3 additions and 7 deletions

View file

@ -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;
}