File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ message XpressInitializerProto {
2121 optional bool extract_names = 1 ;
2222}
2323
24-
2524// Xpress specific parameters for solving. See
2625// https://www.fico.com/fico-xpress-optimization/docs/latest/solver/optimizer/HTML/chapter7.html
2726// for a list of possible parameters (called "controls" in Xpress).
Original file line number Diff line number Diff line change @@ -389,7 +389,9 @@ class ScopedSolverContext {
389389 // values depending on what is set. Since we cannot easily make this
390390 // distinction, we do not support objective_limit. Users should just
391391 // use cutoff_limit with LPs as well.
392- warnings.emplace_back (" XpressSolver does not support objective_limit; use cutoff_limit instead" );
392+ warnings.emplace_back (
393+ " XpressSolver does not support objective_limit; use cutoff_limit "
394+ " instead" );
393395 }
394396 if (parameters.has_best_bound_limit ()) {
395397 warnings.emplace_back (" XpressSolver does not support best_bound_limit" );
You can’t perform that action at this time.
0 commit comments