* src/tgbaalgos/reachiter.hh: Typos in comments.

This commit is contained in:
Alexandre Duret-Lutz 2004-01-06 12:34:24 +00:00
parent c0210abb55
commit a7ab42e422
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,7 @@
2004-01-06 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-01-06 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/reachiter.hh: Typos in comments.
* iface/gspn/eesrg.cc (tgba_gspn_eesrg::all_acceptance_conditions, * iface/gspn/eesrg.cc (tgba_gspn_eesrg::all_acceptance_conditions,
tgba_gspn_eesrg::neg_acceptance_conditions): Forward to tgba_gspn_eesrg::neg_acceptance_conditions): Forward to
data_->operand. data_->operand.

View file

@ -1,4 +1,4 @@
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6), // Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre // département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie. // et Marie Curie.
// //
@ -93,7 +93,7 @@ namespace spot
virtual const state* next_state(); virtual const state* next_state();
protected: protected:
std::stack<const state*> todo; ///< A stack of state yet to explore. std::stack<const state*> todo; ///< A stack of states yet to explore.
}; };
/// \brief An implementation of spot::tgba_reachable_iterator that browses /// \brief An implementation of spot::tgba_reachable_iterator that browses
@ -107,7 +107,7 @@ namespace spot
virtual const state* next_state(); virtual const state* next_state();
protected: protected:
std::deque<const state*> todo; ///< A queue of state yet to explore. std::deque<const state*> todo; ///< A queue of states yet to explore.
}; };