Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Spot
Spot
Commits
8fd233c9
Commit
8fd233c9
authored
May 13, 2020
by
Etienne Renault
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modelcheck: formula can be nullptr
* tests/ltsmin/modelcheck.cc: Here.
parent
bcb55017
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
tests/ltsmin/modelcheck.cc
tests/ltsmin/modelcheck.cc
+6
-3
No files found.
tests/ltsmin/modelcheck.cc
View file @
8fd233c9
...
...
@@ -543,9 +543,12 @@ static int checked_main()
<<
"model,formula,walltimems,memused,type,"
<<
"states,transitions,sccs
\n
"
;
std
::
cout
<<
'#'
<<
split_filename
(
mc_options
.
model
)
<<
','
<<
mc_options
.
formula
<<
','
<<
*
walltime
<<
','
<<
memused
<<
','
<<
split_filename
(
mc_options
.
model
)
<<
','
;
if
(
mc_options
.
formula
!=
nullptr
)
std
::
cout
<<
mc_options
.
formula
;
std
::
cout
<<
','
<<
*
walltime
<<
','
<<
memused
<<
','
<<
rval
<<
','
<<
*
states
<<
','
<<
*
trans
<<
','
<<
*
sccs
<<
'\n'
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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