Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
SolverStatus.cpp
Go to the documentation of this file.
2
3namespace storm {
4namespace solver {
5
6std::ostream& operator<<(std::ostream& out, SolverStatus const& status) {
7 switch (status) {
9 out << "converged";
10 break;
12 out << "terminated";
13 break;
15 out << "maximal iterations exceeded";
16 break;
18 out << "in progress";
19 break;
21 out << "aborted";
22 break;
23 }
24 return out;
25}
26
27} // namespace solver
28} // namespace storm
std::ostream & operator<<(std::ostream &out, LinearEquationSolverProblemFormat const &format)
LabParser.cpp.
Definition cli.cpp:18