This commit is contained in:
Alexandre Duret-Lutz 2009-02-23 15:05:52 +01:00
parent 6e4110fabb
commit ab8b2cbceb
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2009-02-23 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgba/tgba.hh: Typos.
2009-02-18 Alexandre Duret-Lutz <adl@lrde.epita.fr> 2009-02-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgba/succiterconcrete.cc (tgba_succ_iterator_concrete::next): * src/tgba/succiterconcrete.cc (tgba_succ_iterator_concrete::next):

View file

@ -52,12 +52,12 @@ namespace spot
/// TGBAs are transition-based, meanings their labels are put /// TGBAs are transition-based, meanings their labels are put
/// on arcs, not on nodes. They use Generalized Büchi acceptance /// on arcs, not on nodes. They use Generalized Büchi acceptance
/// conditions: there are several acceptance sets (of /// conditions: there are several acceptance sets (of
/// transitions), and a path can be accepted only if it traverse /// transitions), and a path can be accepted only if it traverses
/// at least one transition of each set infinitely often. /// at least one transition of each set infinitely often.
/// ///
/// Browsing such automaton can be achieved using two functions. /// Browsing such automaton can be achieved using two functions:
/// \c get_init_state, and \c succ_iter. The former returns /// \c get_init_state, and \c succ_iter. The former returns
/// the initial state while the latter allows to explore the /// the initial state while the latter lists the
/// successor states of any state. /// successor states of any state.
/// ///
/// Note that although this is a transition-based automata, /// Note that although this is a transition-based automata,