rename tgba_succ_iterator as twa_succ_iterator
Automatic mass renaming. * src/dstarparse/dra2ba.cc, src/dstarparse/nra2nba.cc, src/kripke/fairkripke.hh, src/kripke/kripke.hh, src/kripke/kripkeprint.cc, src/ta/ta.hh, src/ta/taproduct.hh, src/ta/tgta.hh, src/ta/tgtaexplicit.cc, src/ta/tgtaexplicit.hh, src/ta/tgtaproduct.cc, src/ta/tgtaproduct.hh, src/taalgos/emptinessta.cc, src/taalgos/reachiter.hh, src/taalgos/tgba2ta.cc, src/tgba/taatgba.cc, src/tgba/taatgba.hh, src/tgba/tgba.cc, src/tgba/tgba.hh, src/tgba/tgbagraph.hh, src/tgba/tgbamask.cc, src/tgba/tgbaproduct.cc, src/tgba/tgbaproduct.hh, src/tgba/tgbaproxy.cc, src/tgba/tgbaproxy.hh, src/tgba/tgbasafracomplement.cc, src/tgba/tgbasafracomplement.hh, src/tgbaalgos/bfssteps.hh, src/tgbaalgos/compsusp.cc, src/tgbaalgos/dupexp.cc, src/tgbaalgos/gtec/gtec.cc, src/tgbaalgos/gtec/gtec.hh, src/tgbaalgos/gv04.cc, src/tgbaalgos/lbtt.cc, src/tgbaalgos/magic.cc, src/tgbaalgos/ndfs_result.hxx, src/tgbaalgos/reachiter.cc, src/tgbaalgos/reachiter.hh, src/tgbaalgos/replayrun.cc, src/tgbaalgos/scc.cc, src/tgbaalgos/scc.hh, src/tgbaalgos/se05.cc, src/tgbaalgos/stats.cc, src/tgbaalgos/stutter.cc, src/tgbaalgos/tau03.cc, src/tgbaalgos/tau03opt.cc: Rename tgba_succ_iterator as twa_succ_iterator.
This commit is contained in:
parent
c856933099
commit
5d9778474f
46 changed files with 149 additions and 149 deletions
|
|
@ -69,15 +69,15 @@ namespace spot
|
|||
///
|
||||
/// \param s The current state.
|
||||
/// \param n A unique number assigned to \a s.
|
||||
/// \param si The spot::tgba_succ_iterator for \a s.
|
||||
virtual void process_state(const state* s, int n, tgba_succ_iterator* si);
|
||||
/// \param si The spot::twa_succ_iterator for \a s.
|
||||
virtual void process_state(const state* s, int n, twa_succ_iterator* si);
|
||||
/// Called by run() to process a transition.
|
||||
///
|
||||
/// \param in_s The source state
|
||||
/// \param in The source state number.
|
||||
/// \param out_s The destination state
|
||||
/// \param out The destination state number.
|
||||
/// \param si The spot::tgba_succ_iterator positionned on the current
|
||||
/// \param si The spot::twa_succ_iterator positionned on the current
|
||||
/// transition.
|
||||
///
|
||||
/// The in_s and out_s states are owned by the
|
||||
|
|
@ -85,7 +85,7 @@ namespace spot
|
|||
/// instance is destroyed.
|
||||
virtual void process_link(const state* in_s, int in,
|
||||
const state* out_s, int out,
|
||||
const tgba_succ_iterator* si);
|
||||
const twa_succ_iterator* si);
|
||||
|
||||
protected:
|
||||
const_tgba_ptr aut_; ///< The spot::tgba to explore.
|
||||
|
|
@ -139,15 +139,15 @@ namespace spot
|
|||
///
|
||||
/// \param s The current state.
|
||||
/// \param n A unique number assigned to \a s.
|
||||
/// \param si The spot::tgba_succ_iterator for \a s.
|
||||
virtual void process_state(const state* s, int n, tgba_succ_iterator* si);
|
||||
/// \param si The spot::twa_succ_iterator for \a s.
|
||||
virtual void process_state(const state* s, int n, twa_succ_iterator* si);
|
||||
/// Called by run() to process a transition.
|
||||
///
|
||||
/// \param in_s The source state
|
||||
/// \param in The source state number.
|
||||
/// \param out_s The destination state
|
||||
/// \param out The destination state number.
|
||||
/// \param si The spot::tgba_succ_iterator positionned on the current
|
||||
/// \param si The spot::twa_succ_iterator positionned on the current
|
||||
/// transition.
|
||||
///
|
||||
/// The in_s and out_s states are owned by the
|
||||
|
|
@ -155,7 +155,7 @@ namespace spot
|
|||
/// instance is destroyed.
|
||||
virtual void process_link(const state* in_s, int in,
|
||||
const state* out_s, int out,
|
||||
const tgba_succ_iterator* si);
|
||||
const twa_succ_iterator* si);
|
||||
|
||||
protected:
|
||||
const_tgba_ptr aut_; ///< The spot::tgba to explore.
|
||||
|
|
@ -167,7 +167,7 @@ namespace spot
|
|||
{
|
||||
const state* src;
|
||||
int src_n;
|
||||
tgba_succ_iterator* it;
|
||||
twa_succ_iterator* it;
|
||||
};
|
||||
std::deque<stack_item> todo; ///< the DFS stack
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue