ltsmin: prefer '\n' for std::cerr
* tests/ltsmin/modelcheck.cc: Here.
This commit is contained in:
parent
87afcd2f87
commit
b52e941b04
1 changed files with 4 additions and 5 deletions
|
|
@ -339,10 +339,9 @@ static int checked_main()
|
|||
}
|
||||
catch (const std::bad_alloc&)
|
||||
{
|
||||
std::cerr << "Out of memory during emptiness check."
|
||||
<< std::endl;
|
||||
std::cerr << "Out of memory during emptiness check.\n";
|
||||
if (!mc_options.compress)
|
||||
std::cerr << "Try option -z for state compression." << std::endl;
|
||||
std::cerr << "Try option -z for state compression.\n";
|
||||
exit_code = 2;
|
||||
exit(exit_code);
|
||||
}
|
||||
|
|
@ -374,8 +373,8 @@ static int checked_main()
|
|||
}
|
||||
catch (const std::bad_alloc&)
|
||||
{
|
||||
std::cerr << "Out of memory while looking for counterexample."
|
||||
<< std::endl;
|
||||
std::cerr
|
||||
<< "Out of memory while looking for counterexample.\n";
|
||||
exit_code = 2;
|
||||
exit(exit_code);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue