* src/tgbaalgos/magic.cc, src/tgbaalgos/magic.hh,

src/tgbaalgos/se05.cc, src/tgbaalgos/se05.hh,
src/tgbaalgos/tau03.cc, src/tgbaalgos/tau03opt.hh,
src/tgbaalgos/tau03opt.cc: Fix comments and debug traces

* src/tgbatest/randtgba.cc: Adjust names of algorithms.
This commit is contained in:
Denis Poitrenaud 2004-11-25 14:40:17 +00:00
parent 2143d6c4b6
commit 15329c5618
9 changed files with 252 additions and 364 deletions

View file

@ -55,8 +55,7 @@ namespace spot
/// for all t in post(s) do
/// if t.color == white then
/// call dfs_blue(t);
/// end if;
/// if (the edge (s,t) is accepting) then
/// else if (the edge (s,t) is accepting) then
/// target = s;
/// call dfs_red(t);
/// end if;
@ -70,7 +69,7 @@ namespace spot
/// report cycle
/// end if;
/// for all t in post(s) do
/// if t.color != red then
/// if t.color == blue then
/// call dfs_red(t);
/// end if;
/// end for;