Skip to content

Commit ec2344c

Browse files
committed
Format xpress files
1 parent 9ce433d commit ec2344c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ortools/math_opt/solvers/xpress.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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).

ortools/math_opt/solvers/xpress_solver.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)