rename set_single_acceptance_set() to set_buchi()

Fixes #66.

* src/dstarparse/dra2ba.cc, src/dstarparse/nra2nba.cc,
src/hoaparse/hoaparse.yy, src/tgba/tgbagraph.hh,
src/tgbaalgos/complete.cc, src/tgbaalgos/degen.cc,
src/tgbaalgos/dtbasat.cc, src/tgbaalgos/dtgbacomp.cc,
src/tgbaalgos/minimize.cc, src/tgbaalgos/postproc.cc: Here.
This commit is contained in:
Alexandre Duret-Lutz 2015-03-18 20:27:37 +01:00
parent 2dbef514bd
commit 47d9a2d57c
10 changed files with 11 additions and 11 deletions

View file

@ -31,7 +31,7 @@ namespace spot
// We cannot safely complete an automaton if it has no
// acceptance set as the added sink would become accepting.
// In this case, add an acceptance set to all transitions.
allacc = aut->set_single_acceptance_set();
allacc = aut->set_buchi();
for (auto& t: aut->transition_vector())
t.acc = allacc;
}