* src/tgbaalgos/tau03opt.cc (tau03_opt_search): Do not

account for the size of condition_stack.
This commit is contained in:
Alexandre Duret-Lutz 2005-02-22 13:43:47 +00:00
parent a2cbe9cab8
commit fa9614e997
2 changed files with 5 additions and 2 deletions

View file

@ -323,7 +323,6 @@ namespace spot
bdd old = acu;
acu = c_prime.get_acc();
condition_stack.push(cond_level(acu - old, depth));
inc_depth();
}
++depth;
}
@ -348,7 +347,6 @@ namespace spot
{
acu -= condition_stack.top().first;
condition_stack.pop();
dec_depth();
}
}
}