Mark more classes are final.
Fixes #42. * bench/stutter/stutter_invariance_formulas.cc, bin/autfilt.cc, bin/common_output.cc, bin/dstar2tgba.cc, bin/ltl2tgba.cc, bin/ltl2tgta.cc, bin/ltlcross.cc, bin/ltldo.cc, bin/ltlfilt.cc, bin/ltlgrind.cc, spot/misc/intvcmp2.cc, spot/misc/intvcomp.cc, spot/taalgos/dot.cc, spot/taalgos/statessetbuilder.cc, spot/taalgos/stats.cc, spot/tl/relabel.cc, spot/tl/simplify.cc, spot/tl/snf.cc, spot/twa/bdddict.cc, spot/twa/twaproduct.cc, spot/twaalgos/degen.cc, spot/twaalgos/determinize.cc, spot/twaalgos/dot.cc, spot/twaalgos/emptiness.cc, spot/twaalgos/gtec/ce.cc, spot/twaalgos/ltl2tgba_fm.cc, spot/twaalgos/magic.cc, spot/twaalgos/neverclaim.cc, spot/twaalgos/se05.cc, spot/twaalgos/simulation.cc, spot/twaalgos/tau03.cc, spot/twaalgos/tau03opt.cc: Add final.
This commit is contained in:
parent
8814f16637
commit
2402c2141d
32 changed files with 78 additions and 76 deletions
|
|
@ -47,7 +47,7 @@ namespace spot
|
|||
/// \brief Emptiness checker on spot::tgba automata having at most one
|
||||
/// acceptance condition (i.e. a TBA).
|
||||
template <typename heap>
|
||||
class magic_search_ : public emptiness_check, public ec_statistics
|
||||
class magic_search_ final : public emptiness_check, public ec_statistics
|
||||
{
|
||||
public:
|
||||
/// \brief Initialize the Magic Search algorithm on the automaton \a a
|
||||
|
|
@ -424,12 +424,12 @@ namespace spot
|
|||
};
|
||||
};
|
||||
|
||||
class explicit_magic_search_heap
|
||||
class explicit_magic_search_heap final
|
||||
{
|
||||
public:
|
||||
enum { Safe = 1 };
|
||||
|
||||
class color_ref
|
||||
class color_ref final
|
||||
{
|
||||
public:
|
||||
color_ref(color* c) :p(c)
|
||||
|
|
@ -507,12 +507,12 @@ namespace spot
|
|||
state_map<color> h;
|
||||
};
|
||||
|
||||
class bsh_magic_search_heap
|
||||
class bsh_magic_search_heap final
|
||||
{
|
||||
public:
|
||||
enum { Safe = 0 };
|
||||
|
||||
class color_ref
|
||||
class color_ref final
|
||||
{
|
||||
public:
|
||||
color_ref(unsigned char *b, unsigned char o): base(b), offset(o*2)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue