* src/tgbaparse/tgbaparse.yy: Accept automaton without state.
* src/ltltest/randltl.cc: Typo.
This commit is contained in:
parent
3f2790061a
commit
86b7f26960
3 changed files with 14 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2005-01-11 Denis Poitrenaud <Denis.Poitrenaud@lip6.fr>
|
||||
|
||||
* src/tgbaparse/tgbaparse.yy: Accept automaton without state.
|
||||
|
||||
* src/ltltest/randltl.cc: Typo.
|
||||
|
||||
2005-01-10 Denis Poitrenaud <Denis.Poitrenaud@lip6.fr>
|
||||
|
||||
* src/tgbatest/randtgba.cc: Typo.
|
||||
|
|
|
|||
|
|
@ -148,10 +148,10 @@ main(int argc, char** argv)
|
|||
exit(2);
|
||||
}
|
||||
|
||||
if (opt_r > opt_F)
|
||||
if (opt_r > opt_f)
|
||||
{
|
||||
std::cerr << "-r's argument (" << opt_r << ") should not be larger than "
|
||||
<< "-F's (" << opt_F << ")" << std::endl;
|
||||
<< "-f's (" << opt_F << ")" << std::endl;
|
||||
exit(2);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -81,7 +81,12 @@ typedef std::map<std::string, bdd> formula_cache;
|
|||
} acc_list
|
||||
|
||||
%%
|
||||
tgba: acceptance_decl lines | lines;
|
||||
tgba: acceptance_decl lines
|
||||
| acceptance_decl
|
||||
{ result->add_state("0"); }
|
||||
| lines
|
||||
|
|
||||
{ result->add_state("0"); };
|
||||
|
||||
acceptance_decl: ACC_DEF acc_decl ';'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue