3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-20 07:36:38 +00:00

fix RISC build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-07-24 18:02:04 -07:00
parent fc218aeeb5
commit cd9f0d1a6c

View file

@ -304,7 +304,7 @@ public:
void mul(const interval& a, const mpq& b, interval& c) {
if (wd == with_deps) {
interval_deps_combine_rule comb_rule;
mul(b, a, c, comb_rule);
mul(a, b, c, comb_rule);
combine_deps(a, comb_rule, c);
}
else {