* bench/emptchk/pml2tgba.pl: Adjust to work with Spin 5.2.5.

This commit is contained in:
Alexandre Duret-Lutz 2010-11-06 09:20:03 +01:00
parent b240bd8204
commit a53706c824
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-11-06 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* bench/emptchk/pml2tgba.pl: Adjust to work with Spin 5.2.5.
2010-10-07 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* configure.ac: Do not run CF_GXX_WARNINGS unless they are enabled.

View file

@ -117,7 +117,9 @@ my $model = shift @ARGV;
my $model_size = `wc -l <"$model"`;
my $neverstartline_spin517 = 3 + $model_size;
my $neverstartline_spin520 = 4 + $model_size;
my $neverstartline = "($neverstartline_spin517|$neverstartline_spin520)";
my $neverstartline_spin525 = 0 + $model_size;
my $neverstartline =
"($neverstartline_spin517|$neverstartline_spin520|$neverstartline_spin525)";
# Create the automaton
open NEVER, ">never.$$";