cyqlone develop
Fast, parallel and vectorized solver for linear systems with optimal control structure.
Loading...
Searching...
No Matches
status.cpp
Go to the documentation of this file.
2#include <ostream>
3
4namespace cyqlone::qpalm {
5
6std::ostream &operator<<(std::ostream &os, SolverStatus s) { return os << enum_name(s); }
7
8} // namespace cyqlone::qpalm
SolverStatus
Exit status of a numerical solver.
Definition status.hpp:12
const char * enum_name(SolverStatus s)
Definition status.hpp:23
std::ostream & operator<<(std::ostream &os, SolverStatus s)
Definition status.cpp:6