* src/tgbaalgos/bfssteps.hh (bfs_steps::finalize): Document.
This commit is contained in:
parent
ca2fe6c711
commit
6feb92090d
2 changed files with 14 additions and 7 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2005-01-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||
|
||||
* src/tgbaalgos/bfssteps.hh (bfs_steps::finalize): Document.
|
||||
|
||||
* src/tgbaalgos/emptiness_stats.hh (accs_statistics): New class.
|
||||
* src/tgbaalgos/gtec/ce.cc, src/tgbaalgos/gtec/ce.hh
|
||||
(couvreur99_check_result): Inherit from acss_statistics.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
// et Marie Curie.
|
||||
//
|
||||
|
|
@ -85,12 +85,17 @@ namespace spot
|
|||
/// transition.
|
||||
virtual bool match(tgba_run::step& step, const state* dest) = 0;
|
||||
|
||||
virtual void finalize(const std::map<const state*,
|
||||
tgba_run::step,
|
||||
state_ptr_less_than>& father,
|
||||
const tgba_run::step& s,
|
||||
const state* start,
|
||||
tgba_run::steps& l);
|
||||
/// \brief Append the resulting path to the resulting run.
|
||||
///
|
||||
/// This is called after match() has returned true, to append the
|
||||
/// resulting path to \a l. This seldom needs to be overridden,
|
||||
/// unless you do not want \a l to be updated (in which case an empty
|
||||
/// finalize() will do).
|
||||
virtual void finalize(const std::map<const state*, tgba_run::step,
|
||||
state_ptr_less_than>& father,
|
||||
const tgba_run::step& s,
|
||||
const state* start,
|
||||
tgba_run::steps& l);
|
||||
|
||||
protected:
|
||||
const tgba* a_; ///< The spot::tgba we are searching into.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue