7#include "antares-xpansion/xpansion_interfaces/StringManip.h"
9enum class ProblemsFormat
15inline ProblemsFormat problemsFormatFromString(
const std::string& str)
17 auto lower_str = StringManip::StringUtils::ToLowercase(str);
18 if (lower_str ==
"mps")
20 return ProblemsFormat::MPS_FILE;
22 if (lower_str ==
"optimized")
24 return ProblemsFormat::OPTIMIZED;
26 throw std::runtime_error(
"Unknown ProblemsFormat: " + str);