* src/tgbaalgos/emptinesscheck.hh (connected_component::not_null,

connected_component::transition_acc,
connected_component::nb_transition,
connected_component::nb_state): Remove these unused attributes.
(connected_component::connected_component): Merge the two
definitions into one.
(connected_component::~connected_component): Remove.
(connected_component::isAccepted): Delete, unused.
* src/tgbaalgos/emptinesscheck.cc
(connected_component::connected_component,
connected_component::~connected_component): Adjust.
(connected_component::isAccepted): Delete.
(spot):

* src/tgbatest/emptchk.test: Typo.
This commit is contained in:
Alexandre Duret-Lutz 2003-10-23 13:50:15 +00:00
parent 636f5238d3
commit b60722bc58
4 changed files with 23 additions and 40 deletions

View file

@ -20,10 +20,7 @@ namespace spot
{
// During the Depth path we keep the connected component that we met.
public:
connected_component();
connected_component(int i, bdd a);
virtual ~connected_component();
bool isAccepted(tgba* aut);
connected_component(int index = -1);
public:
int index;
@ -36,10 +33,6 @@ namespace spot
/// for the counter example we need to know all the states of the
/// component
set_of_state state_set;
int transition_acc;
int nb_transition;
int nb_state;
bool not_null;
};
class emptiness_check