Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
9c7201c3
Commit
9c7201c3
authored
Jun 17, 2009
by
Alexandre Duret-Lutz
Browse files
* bench/emptchk/pml2tgba.pl: Adjust to work with Spin 5.2.0.
parent
b3e8797c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
9c7201c3
2009-06-17 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* bench/emptchk/pml2tgba.pl: Adjust to work with Spin 5.2.0.
2009-06-12 Guillaume Sadegh <sadegh@lrde.epita.fr>
Adjust the build system for ICC.
...
...
bench/emptchk/pml2tgba.pl
View file @
9c7201c3
...
...
@@ -113,7 +113,11 @@ while (1)
my
$model
=
shift
@ARGV
;
# Find out the start of the never claim.
my
$neverstartline
=
3
+
`
wc -l <"
$model
"
`;
# The line numbering changed in Spin 5.2.0.
my
$model_size
=
`
wc -l <"
$model
"
`;
my
$neverstartline_spin517
=
3
+
$model_size
;
my
$neverstartline_spin520
=
4
+
$model_size
;
my
$neverstartline
=
"
(
$neverstartline_spin517
|
$neverstartline_spin520
)
";
# Create the automaton
open
NEVER
,
"
>never.$$
";
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment