Google OR-Tools
v9.15
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-2025 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 ORTOOLS_MATH_OPT_VALIDATORS_SPARSE_MATRIX_VALIDATOR_H_
15
#define ORTOOLS_MATH_OPT_VALIDATORS_SPARSE_MATRIX_VALIDATOR_H_
16
17
#include <cstdint>
18
19
#include "absl/status/status.h"
20
#include "absl/types/span.h"
21
#include "
ortools/math_opt/core/model_summary.h
"
22
#include "
ortools/math_opt/model.pb.h
"
23
24
namespace
operations_research::math_opt
{
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.
33
absl::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.
39
absl::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
// ORTOOLS_MATH_OPT_VALIDATORS_SPARSE_MATRIX_VALIDATOR_H_
operations_research::math_opt::IdNameBiMap
Definition
model_summary.h:50
operations_research::math_opt::SparseDoubleMatrixProto
Definition
sparse_containers.pb.h:764
model.pb.h
model_summary.h
operations_research::math_opt
Definition
gurobi_isv.cc:28
operations_research::math_opt::SparseMatrixIdsAreKnown
absl::Status SparseMatrixIdsAreKnown(const SparseDoubleMatrixProto &matrix, const IdNameBiMap &row_ids, const IdNameBiMap &column_ids)
Definition
sparse_matrix_validator.cc:91
operations_research::math_opt::SparseMatrixValid
absl::Status SparseMatrixValid(const SparseDoubleMatrixProto &matrix, const bool enforce_upper_triangular)
Definition
sparse_matrix_validator.cc:30
ortools
math_opt
validators
sparse_matrix_validator.h
Generated by
1.15.0