You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
524 B

#include "storm/solver/LinearEquationSolverProblemFormat.h"
namespace storm {
namespace solver {
std::ostream& operator<<(std::ostream& out, LinearEquationSolverProblemFormat const& format) {
switch (format) {
case LinearEquationSolverProblemFormat::EquationSystem: out << "equation system"; break;
case LinearEquationSolverProblemFormat::FixedPointSystem: out << "fixed point system"; break;
}
return out;
}
}
}