Format xpress files

This commit is contained in:
Guillaume Chatelet
2025-12-11 15:23:43 +00:00
committed by Corentin Le Molgat
parent 5b3a0b98c3
commit 6d76575f3d
2 changed files with 3 additions and 2 deletions

View File

@@ -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).

View File

@@ -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");