OR-Tools  9.6
linear_expression_validator.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/status/status.h"
22 #include "ortools/math_opt/sparse_containers.pb.h"
25 
27 
28 absl::Status ValidateLinearExpression(const LinearExpressionProto& expression,
29  const IdNameBiMap& variable_universe) {
31  MakeView(expression.ids(), expression.coefficients()),
32  {.allow_positive_infinity = false, .allow_negative_infinity = false}))
33  << "invalid linear expression terms";
34  for (const int64_t var_id : expression.ids()) {
35  if (!variable_universe.HasId(var_id)) {
37  << "invalid variable id: " << var_id;
38  }
39  }
40  RETURN_IF_ERROR(CheckScalarNoNanNoInf(expression.offset()))
41  << "invalid linear expression offset";
42  return absl::OkStatus();
43 }
44 
45 } // namespace operations_research::math_opt
#define RETURN_IF_ERROR(expr)
absl::Status CheckIdsAndValues(const SparseVectorView< T > &vector_view, absl::string_view value_name="values")
SparseVectorView< T > MakeView(absl::Span< const int64_t > ids, const Collection &values)
absl::Status CheckScalarNoNanNoInf(const double d)
absl::Status ValidateLinearExpression(const LinearExpressionProto &expression, const IdNameBiMap &variable_universe)
StatusBuilder InvalidArgumentErrorBuilder()