remove tgba_explicit variants and the old scc_filter
* src/tgba/tgbaexplicit.cc, src/tgba/tgbaexplicit.hh: Delete. * src/tgba/Makefile.am: Adjust. * src/tgbaalgos/reductgba_sim.cc, src/tgbaalgos/reductgba_sim.hh: Delete these obsoleted algorithms. * src/tgbaalgos/Makefile.am: Adjust. * src/tgbatest/explicit.cc, src/tgbatest/explicit.test, src/tgbatest/explicit2.cc, src/tgbatest/explicit2.test, src/tgbatest/explicit3.cc, src/tgbatest/explicit3.test: Delete. * src/tgbatest/Makefile.am: Adjust. * src/bin/ltl2tgba.cc, src/priv/countstates.cc, src/tgbaalgos/isweakscc.cc, src/tgbaalgos/lbtt.cc, src/tgbaalgos/ltl2tgba_fm.cc, src/tgbaalgos/minimize.cc, src/tgbaalgos/minimize.hh, src/tgbaalgos/powerset.cc, src/tgbaalgos/powerset.hh, src/tgbaalgos/sccfilter.cc, src/tgbaalgos/sccfilter.hh, src/tgbaalgos/simulation.cc, src/tgbatest/explprod.cc, src/tgbatest/ltl2tgba.cc, src/tgbatest/powerset.cc, src/tgbatest/tgbaread.cc, src/tgbatest/tripprod.cc, wrap/python/ajax/spot.in, wrap/python/spot.i: Remove all remaining references to tgba_explicit.
This commit is contained in:
parent
6c9d5e4bb3
commit
e6ea90e326
32 changed files with 23 additions and 2126 deletions
|
|
@ -700,9 +700,6 @@ if degen or neverclaim:
|
|||
else:
|
||||
degen = automaton
|
||||
|
||||
if utf8:
|
||||
spot.tgba_enable_utf8(degen)
|
||||
|
||||
# Buchi Automaton Output
|
||||
if output_type == 'a':
|
||||
if buchi_type == 'i':
|
||||
|
|
|
|||
|
|
@ -79,7 +79,6 @@ namespace std {
|
|||
#include "tgba/tgba.hh"
|
||||
#include "tgba/sba.hh"
|
||||
#include "tgba/taatgba.hh"
|
||||
#include "tgba/tgbaexplicit.hh"
|
||||
#include "tgba/tgbaproduct.hh"
|
||||
#include "tgba/tgbatba.hh"
|
||||
|
||||
|
|
@ -221,7 +220,6 @@ using namespace spot;
|
|||
%include "tgba/tgba.hh"
|
||||
%include "tgba/sba.hh"
|
||||
%include "tgba/taatgba.hh"
|
||||
%include "tgba/tgbaexplicit.hh"
|
||||
%include "tgba/tgbaproduct.hh"
|
||||
%include "tgba/tgbatba.hh"
|
||||
|
||||
|
|
@ -233,61 +231,6 @@ namespace spot {
|
|||
};
|
||||
}
|
||||
|
||||
%template(tgba_explicit_succ_iterator__string)
|
||||
spot::tgba_explicit_succ_iterator<state_explicit_string>;
|
||||
%template(tgba_explicit_succ_iterator__number)
|
||||
spot::tgba_explicit_succ_iterator<state_explicit_number>;
|
||||
%template(tgba_explicit_succ_iterator__formula)
|
||||
spot::tgba_explicit_succ_iterator<state_explicit_formula>;
|
||||
|
||||
%template(explicit_graph__string_tgba)
|
||||
spot::explicit_graph<state_explicit_string, tgba>;
|
||||
%template(explicit_graph__number_tgba)
|
||||
spot::explicit_graph<state_explicit_number, tgba>;
|
||||
%template(explicit_graph__formula_tgba)
|
||||
spot::explicit_graph<state_explicit_formula, tgba>;
|
||||
|
||||
%template(explicit_string_tgba)
|
||||
spot::tgba_explicit<state_explicit_string>;
|
||||
%template(explicit_number_tgba)
|
||||
spot::tgba_explicit<state_explicit_number>;
|
||||
%template(explicit_formula_tgba)
|
||||
spot::tgba_explicit<state_explicit_formula>;
|
||||
|
||||
%template(explicit_string__tgba)
|
||||
spot::explicit_conf<tgba_explicit<state_explicit_string>,
|
||||
state_explicit_string>;
|
||||
%template(explicit_number__tgba)
|
||||
spot::explicit_conf<tgba_explicit<state_explicit_number>,
|
||||
state_explicit_number>;
|
||||
%template(explicit_formula__tgba)
|
||||
spot::explicit_conf<tgba_explicit<state_explicit_formula>,
|
||||
state_explicit_formula>;
|
||||
|
||||
%template(explicit_graph__string_sba)
|
||||
spot::explicit_graph<state_explicit_string, sba>;
|
||||
%template(explicit_graph__number_sba)
|
||||
spot::explicit_graph<state_explicit_number, sba>;
|
||||
%template(explicit_graph__formula_sba)
|
||||
spot::explicit_graph<state_explicit_formula, sba>;
|
||||
|
||||
%template(explicit_string_sba)
|
||||
spot::sba_explicit<state_explicit_string>;
|
||||
%template(explicit_number_sba)
|
||||
spot::sba_explicit<state_explicit_number>;
|
||||
%template(explicit_formula_sba)
|
||||
spot::sba_explicit<state_explicit_formula>;
|
||||
|
||||
%template(explicit_string__sba)
|
||||
spot::explicit_conf<sba_explicit<state_explicit_string>,
|
||||
state_explicit_string>;
|
||||
%template(explicit_number__sba)
|
||||
spot::explicit_conf<sba_explicit<state_explicit_number>,
|
||||
state_explicit_number>;
|
||||
%template(explicit_formula__sba)
|
||||
spot::explicit_conf<sba_explicit<state_explicit_formula>,
|
||||
state_explicit_formula>;
|
||||
|
||||
%include "tgbaalgos/degen.hh"
|
||||
%include "tgbaalgos/dottydec.hh"
|
||||
%include "tgbaalgos/dotty.hh"
|
||||
|
|
@ -399,17 +342,6 @@ minimize_obligation_new(const spot::tgba* a, const spot::ltl::formula* f)
|
|||
return res;
|
||||
}
|
||||
|
||||
void
|
||||
tgba_enable_utf8(spot::tgba* a)
|
||||
{
|
||||
if (spot::tgba_explicit_formula* tef =
|
||||
dynamic_cast<spot::tgba_explicit_formula*>(a))
|
||||
tef->enable_utf8();
|
||||
else if (spot::sba_explicit_formula* sef =
|
||||
dynamic_cast<spot::sba_explicit_formula*>(a))
|
||||
sef->enable_utf8();
|
||||
}
|
||||
|
||||
spot::ltl::parse_error_list
|
||||
empty_parse_error_list()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue