3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

fixed bugs

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-12-08 08:32:06 -08:00
parent 189fc46b6d
commit 47edff2076
2 changed files with 5 additions and 2 deletions

View file

@ -260,8 +260,8 @@ public:
\brief c <- a - b
*/
void sub(interval const & a, interval const & b, interval & c) {
m().sub(a.m_lower, b.m_lower, c.m_lower);
m().sub(a.m_upper, b.m_upper, c.m_upper);
m().sub(a.m_lower, b.m_upper, c.m_lower);
m().sub(a.m_upper, b.m_lower, c.m_upper);
}
private: