OR-Tools  9.6
sparse_coefficient_map.cc
Go to the documentation of this file.
1 // Copyright 2010-2022 Google LLC
2 // Licensed under the Apache License, Version 2.0 (the "License");
3 // you may not use this file except in compliance with the License.
4 // You may obtain a copy of the License at
5 //
6 // http://www.apache.org/licenses/LICENSE-2.0
7 //
8 // Unless required by applicable law or agreed to in writing, software
9 // distributed under the License is distributed on an "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 // See the License for the specific language governing permissions and
12 // limitations under the License.
13 
15 
16 #include <cstdint>
17 
18 #include "absl/algorithm/container.h"
19 #include "ortools/math_opt/sparse_containers.pb.h"
21 
23 
24 SparseDoubleVectorProto SparseCoefficientMap::Proto() const {
25  SparseDoubleVectorProto result;
26  result.mutable_ids()->Reserve(static_cast<int>(terms_.size()));
27  result.mutable_values()->Reserve(static_cast<int>(terms_.size()));
28  for (const auto [var, _] : terms_) {
29  result.add_ids(var.value());
30  }
31  absl::c_sort(*result.mutable_ids());
32  for (const int64_t id : result.ids()) {
33  result.add_values(terms_.at(VariableId(id)));
34  }
35  return result;
36 }
37 
38 } // namespace operations_research::math_opt
IntVar * var
Definition: expr_array.cc:1874