* src/tgbaalgos/replayrun.cc (replay_tgba_run): More comments.

This commit is contained in:
Alexandre Duret-Lutz 2004-12-08 15:44:17 +00:00
parent 688587d700
commit 8279667300
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2004-12-08 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/replayrun.cc (replay_tgba_run): More comments.
* src/tgba/tgbaexplicit.cc, src/tgba/tgbaexplicit.hh
(tgba_explicit::create_transition(state*, const state*)): New function.
* src/tgbaalgos/randomgraph.cc, src/tgbaalgos/randomgraph.hh:

View file

@ -212,6 +212,11 @@ namespace spot
delete j;
// Sum acceptance conditions.
//
// (Beware l and i designate the next step to consider.
// Therefore if i is at the beginning of the cycle, `acc'
// contains the acceptance conditions of the last transition
// in the prefix; we should not account it.)
if (l == &run->cycle && i != l->begin())
{
all_acc |= acc;