Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
sparse_matrix_validator.h
Go to the documentation of this file.
1// Copyright 2010-2024 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
14#ifndef OR_TOOLS_MATH_OPT_VALIDATORS_SPARSE_MATRIX_VALIDATOR_H_
15#define OR_TOOLS_MATH_OPT_VALIDATORS_SPARSE_MATRIX_VALIDATOR_H_
16
17#include <cstdint>
18
19#include "absl/status/status.h"
20#include "absl/types/span.h"
22#include "ortools/math_opt/model.pb.h"
23
25
26// Validates that the input satisfies the following invariants:
27// 1. matrix.row_ids, matrix.column_ids, and matrix.coefficients are all the
28// same length.
29// 2. matrix.row_ids and matrix.column_ids are nonnegative.
30// 3. The matrix is in row major ordering with no repeats.
31// 4. Each entry in matrix.coefficients is finite and not NaN.
32// 5. If enforce_upper_triangular=true, then matrix must be upper triangular.
33absl::Status SparseMatrixValid(const SparseDoubleMatrixProto& matrix,
34 bool enforce_upper_triangular = false);
35
36// Verifies that:
37// 1. matrix.row_ids is a subset of row_ids.
38// 2. matrix.column_ids is a subset of column_ids.
39absl::Status SparseMatrixIdsAreKnown(const SparseDoubleMatrixProto& matrix,
40 const IdNameBiMap& row_ids,
41 const IdNameBiMap& column_ids);
42
43} // namespace operations_research::math_opt
44
45#endif // OR_TOOLS_MATH_OPT_VALIDATORS_SPARSE_MATRIX_VALIDATOR_H_
An object oriented wrapper for quadratic constraints in ModelStorage.
Definition gurobi_isv.cc:28
absl::Status SparseMatrixIdsAreKnown(const SparseDoubleMatrixProto &matrix, const IdNameBiMap &row_ids, const IdNameBiMap &column_ids)
absl::Status SparseMatrixValid(const SparseDoubleMatrixProto &matrix, const bool enforce_upper_triangular)