mirror of
https://github.com/Z3Prover/z3
synced 2025-06-01 20:01:20 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
98c7069f75
commit
df981666fd
1 changed files with 5 additions and 3 deletions
|
@ -882,9 +882,11 @@ public:
|
||||||
ncore.push_back(mk_not(m, f));
|
ncore.push_back(mk_not(m, f));
|
||||||
m_unfold_upper -= b.weight;
|
m_unfold_upper -= b.weight;
|
||||||
}
|
}
|
||||||
m_unfold_upper += rational(core.size() - 1) * weight;
|
if (core.size() > 1) {
|
||||||
expr* am = mk_atmost(ncore, 1, weight);
|
m_unfold_upper += rational(core.size() - 2) * weight;
|
||||||
new_assumption(am, weight);
|
expr* am = mk_atmost(ncore, 1, weight);
|
||||||
|
new_assumption(am, weight);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue