3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-26 18:45:33 +00:00

merge changes from Z3Prover repository

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-12-24 12:11:48 -08:00
parent f22d4b50cc
commit ee255ef8b3
6 changed files with 1064 additions and 165 deletions

View file

@ -486,7 +486,7 @@ interv intervals::interval_of_expr(const nex* e, unsigned p) {
return b;
}
case expr_type::MUL: {
interv b = interval_of_mul<with_deps>(e->to_mul());
interv b = interval_of_mul<wd>(e->to_mul());
if (p != 1)
return power<wd>(b, p);
return b;