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:
parent
cd9f0d1a6c
commit
f533220482
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue