3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 13:58:45 +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

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