hoa: rename hoaf_reachable() to hoa_reachable()

* src/tgbaalgos/hoaf.cc, src/tgbaalgos/hoaf.hh: Rename to...
* src/tgbaalgos/hoa.cc, src/tgbaalgos/hoa.hh: ... these, and
fix the function names.
* src/tgbaalgos/Makefile.am, src/bin/autfilt.cc,
src/bin/dstar2tgba.cc, src/bin/ltl2tgba.cc, src/tgbatest/ltl2tgba.cc:
Adjust all calls.
This commit is contained in:
Alexandre Duret-Lutz 2014-11-25 22:02:59 +01:00
parent 5b5c5edcf8
commit f08a26f7b9
7 changed files with 63 additions and 63 deletions

View file

@ -32,7 +32,7 @@
#include "tgbaalgos/dotty.hh"
#include "tgbaalgos/lbtt.hh"
#include "tgbaalgos/hoaf.hh"
#include "tgbaalgos/hoa.hh"
#include "tgbaalgos/neverclaim.hh"
#include "tgbaalgos/save.hh"
#include "tgbaalgos/stats.hh"
@ -127,7 +127,7 @@ const struct argp_child children[] =
enum output_format { Dot, Lbtt, Lbtt_t, Spin, Spot, Stats, Hoa } format = Dot;
bool utf8 = false;
const char* stats = "";
const char* hoaf_opt = 0;
const char* hoa_opt = 0;
spot::option_map extra_options;
static int
@ -147,7 +147,7 @@ parse_opt(int key, char* arg, struct argp_state*)
break;
case 'H':
format = Hoa;
hoaf_opt = arg;
hoa_opt = arg;
break;
case 'M':
type = spot::postprocessor::Monitor;
@ -315,7 +315,7 @@ namespace
spot::lbtt_reachable(std::cout, aut, false);
break;
case Hoa:
spot::hoaf_reachable(std::cout, aut, hoaf_opt) << '\n';
spot::hoa_reachable(std::cout, aut, hoa_opt) << '\n';
break;
case Spot:
spot::tgba_save_reachable(std::cout, aut);