simulation: do not create scc_info

* spot/twaalgos/simulation.cc: Remove useless creation of scc_info
object.
This commit is contained in:
Alexandre Duret-Lutz 2017-10-07 13:10:03 +02:00
parent da65479696
commit b521fef226

View file

@ -27,7 +27,6 @@
#include <spot/twa/bddprint.hh>
#include <spot/twaalgos/reachiter.hh>
#include <spot/twaalgos/sccfilter.hh>
#include <spot/twaalgos/sccinfo.hh>
#include <spot/twaalgos/sepsets.hh>
#include <spot/twaalgos/isdet.hh>
#include <spot/misc/bddlt.hh>
@ -164,8 +163,6 @@ namespace spot
throw std::runtime_error
("direct_simulation() does not yet support alternation");
scc_info_.reset(new scc_info(in));
unsigned ns = in->num_states();
size_a_ = ns;
unsigned init_state_number = in->get_init_state_number();
@ -710,8 +707,6 @@ namespace spot
automaton_size stat;
std::unique_ptr<scc_info> scc_info_;
const const_twa_graph_ptr original_;
};