* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_run):

Remove spurious FIXME.
This commit is contained in:
Alexandre Duret-Lutz 2004-11-08 10:32:34 +00:00
parent a31ab32b9b
commit 86ff462fa4
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-11-08 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_run):
Remove spurious FIXME.
2004-11-05 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-11-05 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/evtgbaalgos/save.cc (save_bfs::output_acc_set): Sort * src/evtgbaalgos/save.cc (save_bfs::output_acc_set): Sort

View file

@ -75,7 +75,7 @@ namespace spot
numbered_state_heap::state_index_p spi = numbered_state_heap::state_index_p spi =
ecs_->h->index(ecs_->aut->get_init_state()); ecs_->h->index(ecs_->aut->get_init_state());
assert(spi.first); assert(spi.first);
/// FIXME: Should compute label and acceptance condition. // This incomplete starting step will be overwritten later.
tgba_run::step s = { spi.first, bddtrue, bddfalse }; tgba_run::step s = { spi.first, bddtrue, bddfalse };
run_->prefix.push_front(s); run_->prefix.push_front(s);
@ -138,6 +138,7 @@ namespace spot
t = father[t.s]; t = father[t.s];
} }
assert(!run_->prefix.empty()); assert(!run_->prefix.empty());
// Overwrite the incomplete starting step.
run_->prefix.back() = t; run_->prefix.back() = t;
// Append SEQ to RUN_->PREFIX. // Append SEQ to RUN_->PREFIX.