Typo: rename automata_ as aut_.

* src/tgbaalgos/reachiter.hh, src/tgbaalgos/reachiter.cc,
src/tgbaalgos/dotty.cc, src/tgbaalgos/dupexp.cc,
src/tgbaalgos/lbtt.cc, src/tgbaalgos/neverclaim.cc,
src/tgbaalgos/reductgba_sim.cc, src/tgbaalgos/reductgba_sim_del.cc,
src/tgbaalgos/save.cc, src/tgbaalgos/sccfilter.cc,
src/tgba/tgbareduc.cc, src/evtgbaalgos/tgba2evtgba.cc,
src/kripke/kripkeprint.cc: Rename automata_ as aut_.
This commit is contained in:
Alexandre Duret-Lutz 2012-03-17 12:02:19 +01:00
parent 4749d77e4f
commit 3fb29ce1be
13 changed files with 63 additions and 61 deletions

View file

@ -132,9 +132,9 @@ namespace spot
void
tgba_reduc::process_state(const spot::state* s, int, tgba_succ_iterator* si)
{
spot::state* init = automata_->get_init_state();
spot::state* init = aut_->get_init_state();
if (init->compare(s) == 0)
this->set_init_state(automata_->format_state(s));
this->set_init_state(aut_->format_state(s));
init->destroy();
transition* t;
@ -152,8 +152,8 @@ namespace spot
tgba_reduc::create_transition(const spot::state* source,
const spot::state* dest)
{
const std::string ss = automata_->format_state(source);
const std::string sd = automata_->format_state(dest);
const std::string ss = aut_->format_state(source);
const std::string sd = aut_->format_state(dest);
tgba_explicit::state* s = tgba_explicit_string::add_state(ss);
tgba_explicit::state* d = tgba_explicit_string::add_state(sd);