3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 18:30:24 +00:00

fixing arith build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-07-25 09:28:30 -07:00
parent cd9f0d1a6c
commit f533220482

View file

@ -300,6 +300,7 @@ public:
} }
} }
#if 0
template <enum with_deps_t wd> template <enum with_deps_t wd>
void mul(const interval& a, const mpq& b, interval& c) { void mul(const interval& a, const mpq& b, interval& c) {
if (wd == with_deps) { if (wd == with_deps) {
@ -308,9 +309,10 @@ public:
combine_deps(a, comb_rule, c); combine_deps(a, comb_rule, c);
} }
else { else {
mul(b, a, c); mul(a, b, c);
} }
} }
#endif
template <enum with_deps_t wd> template <enum with_deps_t wd>
void copy_upper_bound(const interval& a, interval& i) const { void copy_upper_bound(const interval& a, interval& i) const {