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,"
|
<< "model,formula,walltimems,memused,type,"
|
||||||
<< "states,transitions,sccs\n";
|
<< "states,transitions,sccs\n";
|
||||||
std::cout << '#'
|
std::cout << '#'
|
||||||
<< split_filename(mc_options.model) << ','
|
<< split_filename(mc_options.model) << ',';
|
||||||
<< mc_options.formula << ','
|
|
||||||
<< *walltime << ',' << memused << ','
|
if (mc_options.formula != nullptr)
|
||||||
|
std::cout << mc_options.formula;
|
||||||
|
|
||||||
|
std::cout << ',' << *walltime << ',' << memused << ','
|
||||||
<< rval << ',' << *states << ',' << *trans << ','
|
<< rval << ',' << *states << ',' << *trans << ','
|
||||||
<< *sccs << '\n';
|
<< *sccs << '\n';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue