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:
parent
189fc46b6d
commit
47edff2076
2 changed files with 5 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue