3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-01-01 21:13:25 -08:00
parent c5b82796ca
commit af27efbf4a
3 changed files with 82 additions and 3 deletions

View file

@ -1437,7 +1437,11 @@ namespace smt {
if (val != l_undef &&
ctx.get_assign_level(thl) == ctx.get_base_level()) {
if (val == l_true) {
k -= n.get_unsigned();
unsigned m = n.get_unsigned();
if (k < m) {
return;
}
k -= m;
}
continue;
}