diff --git a/ortools/math_opt/solvers/xpress.proto b/ortools/math_opt/solvers/xpress.proto index 609fa2bd41..e0f02c2152 100644 --- a/ortools/math_opt/solvers/xpress.proto +++ b/ortools/math_opt/solvers/xpress.proto @@ -21,7 +21,6 @@ message XpressInitializerProto { optional bool extract_names = 1; } - // Xpress specific parameters for solving. See // https://www.fico.com/fico-xpress-optimization/docs/latest/solver/optimizer/HTML/chapter7.html // for a list of possible parameters (called "controls" in Xpress). diff --git a/ortools/math_opt/solvers/xpress_solver.cc b/ortools/math_opt/solvers/xpress_solver.cc index e688f9d7f5..b5fad9a287 100644 --- a/ortools/math_opt/solvers/xpress_solver.cc +++ b/ortools/math_opt/solvers/xpress_solver.cc @@ -389,7 +389,9 @@ class ScopedSolverContext { // values depending on what is set. Since we cannot easily make this // distinction, we do not support objective_limit. Users should just // use cutoff_limit with LPs as well. - warnings.emplace_back("XpressSolver does not support objective_limit; use cutoff_limit instead"); + warnings.emplace_back( + "XpressSolver does not support objective_limit; use cutoff_limit " + "instead"); } if (parameters.has_best_bound_limit()) { warnings.emplace_back("XpressSolver does not support best_bound_limit");