Make Couvreur/FM the default translation.

* src/tgbatest/ltl2tgba.cc (syntax, main): Do it.
* NEWS: Mention it.
This commit is contained in:
Alexandre Duret-Lutz 2010-01-30 11:20:27 +01:00
parent 369e4c419b
commit 55b693e123
4 changed files with 15 additions and 7 deletions

View file

@ -110,9 +110,9 @@ syntax(char* prog)
<< "Translation algorithm:" << std::endl
<< " -f use Couvreur's FM algorithm for LTL"
<< "(default)"
<< std::endl
<< " -l use Couvreur's LaCIM algorithm for LTL "
<< "(default)"
<< std::endl
<< " -le use Couvreur's LaCIM algorithm for ELTL"
<< std::endl
@ -268,7 +268,7 @@ main(int argc, char** argv)
enum { NoDegen, DegenTBA, DegenSBA } degeneralize_opt = NoDegen;
enum { TransitionLabeled, StateLabeled } labeling_opt = TransitionLabeled;
enum { TransFM, TransLaCIM, TransLaCIM_ELTL, TransLaCIM_ELTL_ops, TransTAA }
translation = TransLaCIM;
translation = TransFM;
int fm_red = spot::ltl::Reduce_None;
bool fm_exprop_opt = false;
bool fm_symb_merge_opt = true;