3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-29 07:13:37 +00:00

debug dio

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2024-08-26 10:18:56 -10:00 committed by Lev Nachmanson
parent df18885f97
commit a796d48264
3 changed files with 79 additions and 48 deletions

View file

@ -169,12 +169,12 @@ public:
return ret;
}
friend lar_term operator*(const mpq& k, const lar_term& term) {
lar_term r;
for (const auto& p : term) {
for (const auto& p : term) {
r.add_monomial(p.coeff()*k, p.j());
}
}
return r;
}