postproc: Perform simulation on the BA in --high mode.

* src/tgbaalgos/postproc.cc, src/tgbaalgos/postproc.hh: Do simulation
on the BA produced in --high mode.
* src/bin/spot-x.cc: Document the ba-simul option that can be used
to disable it.
This commit is contained in:
Alexandre Duret-Lutz 2013-04-26 11:03:47 +02:00
parent ce2bb052cb
commit 4c2791e042
3 changed files with 30 additions and 10 deletions

View file

@ -90,7 +90,7 @@ namespace spot
const tgba* run(const tgba* input_disown, const ltl::formula* f);
protected:
const tgba* do_simul(const tgba* input);
const tgba* do_simul(const tgba* input, int opt);
const tgba* do_degen(const tgba* input);
output_type type_;
@ -103,6 +103,7 @@ namespace spot
int simul_;
int simul_limit_;
int scc_filter_;
int ba_simul_;
};
/// @}
}