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

relax condition for distributing extract over ite #2359

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-06-23 16:48:42 -07:00
parent b8734273c8
commit db274ebe01
3 changed files with 7 additions and 4 deletions

View file

@ -1018,7 +1018,7 @@ void interval_manager<C>::mul(interval const & i1, interval const & i2, interval
#ifdef _TRACE
static unsigned call_id = 0;
#endif
#if Z3DEBUG || _TRACE
#if Z3DEBUG
bool i1_contains_zero = contains_zero(i1);
bool i2_contains_zero = contains_zero(i2);
#endif