Remove CoeffMap typedef in linear_solver

This commit is contained in:
Laurent Perron
2018-07-24 09:32:14 -07:00
parent be233ca283
commit a9dd4aec9a
10 changed files with 143 additions and 84 deletions

View File

@@ -376,4 +376,12 @@ message MPSolutionResponse {
// it is actually a linear program).
// These are set iff 'status' is OPTIMAL or FEASIBLE.
repeated double dual_value = 4 [packed = true];
// [Advanced usage.]
// Values of the reduced cost of the variables in the same order as the
// MPModelProto::variable. This is a dense representation.
// These are not set if the problem was solved with a MIP solver (even if it
// is actually a linear program).
// These are set iff 'status' is OPTIMAL or FEASIBLE.
repeated double reduced_cost = 6 [packed = true];
}