modelcheck: formula can be nullptr
* tests/ltsmin/modelcheck.cc: Here.
This commit is contained in:
parent
c19163cced
commit
1736a7364c
1 changed files with 6 additions and 3 deletions
|
|
@ -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';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue