6enum class ProblemsFormat
12inline ProblemsFormat problemsFormatFromString(
const std::string& str)
16 return ProblemsFormat::MPS_FILE;
18 else if (str ==
"SAVED")
20 return ProblemsFormat::SAVED_FILE;
24 throw std::runtime_error(
"Unknown ProblemsFormat: " + str);