blob: 720653666376bffe76370b3d79bdb7ac6adc1b25 [file] [log] [blame]
Sameer Agarwal290b9752013-02-17 16:50:37 -08001// Ceres Solver - A fast non-linear least squares minimizer
2// Copyright 2013 Google Inc. All rights reserved.
3// http://code.google.com/p/ceres-solver/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: sameeragarwal@google.com (Sameer Agarwal)
30
31#ifndef CERES_INTERNAL_PRECONDITIONER_H_
32#define CERES_INTERNAL_PRECONDITIONER_H_
33
34#include <vector>
35#include "ceres/linear_operator.h"
36#include "ceres/sparse_matrix.h"
37
38namespace ceres {
39namespace internal {
40
Sameer Agarwalc1e10d92013-04-24 11:58:24 -070041class BlockSparseMatrix;
Sameer Agarwal290b9752013-02-17 16:50:37 -080042class SparseMatrix;
43
44class Preconditioner : public LinearOperator {
45 public:
46 struct Options {
47 Options()
48 : type(JACOBI),
49 sparse_linear_algebra_library(SUITE_SPARSE),
Sameer Agarwal290b9752013-02-17 16:50:37 -080050 num_threads(1),
Sameer Agarwal31730ef2013-02-28 11:20:28 -080051 row_block_size(Eigen::Dynamic),
52 e_block_size(Eigen::Dynamic),
53 f_block_size(Eigen::Dynamic) {
Sameer Agarwal290b9752013-02-17 16:50:37 -080054 }
55
56 PreconditionerType type;
57
58 SparseLinearAlgebraLibraryType sparse_linear_algebra_library;
59
Sameer Agarwal290b9752013-02-17 16:50:37 -080060 // If possible, how many threads the preconditioner can use.
61 int num_threads;
62
63 // Hints about the order in which the parameter blocks should be
64 // eliminated by the linear solver.
65 //
66 // For example if elimination_groups is a vector of size k, then
67 // the linear solver is informed that it should eliminate the
Sameer Agarwalbeb45052013-02-22 13:37:01 -080068 // parameter blocks 0 ... elimination_groups[0] - 1 first, and
Sameer Agarwal931c3092013-02-25 09:46:21 -080069 // then elimination_groups[0] ... elimination_groups[1] - 1 and so
Sameer Agarwalbeb45052013-02-22 13:37:01 -080070 // on. Within each elimination group, the linear solver is free to
71 // choose how the parameter blocks are ordered. Different linear
72 // solvers have differing requirements on elimination_groups.
Sameer Agarwal290b9752013-02-17 16:50:37 -080073 //
74 // The most common use is for Schur type solvers, where there
75 // should be at least two elimination groups and the first
76 // elimination group must form an independent set in the normal
77 // equations. The first elimination group corresponds to the
78 // num_eliminate_blocks in the Schur type solvers.
79 vector<int> elimination_groups;
80
81 // If the block sizes in a BlockSparseMatrix are fixed, then in
82 // some cases the Schur complement based solvers can detect and
83 // specialize on them.
84 //
85 // It is expected that these parameters are set programmatically
86 // rather than manually.
87 //
88 // Please see schur_complement_solver.h and schur_eliminator.h for
89 // more details.
90 int row_block_size;
91 int e_block_size;
92 int f_block_size;
93 };
94
95 virtual ~Preconditioner();
96
97 // Update the numerical value of the preconditioner for the linear
98 // system:
99 //
100 // | A | x = |b|
101 // |diag(D)| |0|
102 //
103 // for some vector b. It is important that the matrix A have the
104 // same block structure as the one used to construct this object.
105 //
106 // D can be NULL, in which case its interpreted as a diagonal matrix
107 // of size zero.
Sameer Agarwalc1e10d92013-04-24 11:58:24 -0700108 virtual bool Update(const BlockSparseMatrix& A, const double* D) = 0;
Sameer Agarwal290b9752013-02-17 16:50:37 -0800109
110 // LinearOperator interface. Since the operator is symmetric,
111 // LeftMultiply and num_cols are just calls to RightMultiply and
112 // num_rows respectively. Update() must be called before
113 // RightMultiply can be called.
114 virtual void RightMultiply(const double* x, double* y) const = 0;
115 virtual void LeftMultiply(const double* x, double* y) const {
116 return RightMultiply(x, y);
117 }
118
119 virtual int num_rows() const = 0;
120 virtual int num_cols() const {
121 return num_rows();
122 }
123};
124
125// Wrap a SparseMatrix object as a preconditioner.
126class SparseMatrixPreconditionerWrapper : public Preconditioner {
127 public:
128 // Wrapper does NOT take ownership of the matrix pointer.
Sameer Agarwalbeb45052013-02-22 13:37:01 -0800129 explicit SparseMatrixPreconditionerWrapper(const SparseMatrix* matrix);
Sameer Agarwal290b9752013-02-17 16:50:37 -0800130 virtual ~SparseMatrixPreconditionerWrapper();
131
132 // Preconditioner interface
Sameer Agarwalc1e10d92013-04-24 11:58:24 -0700133 virtual bool Update(const BlockSparseMatrix& A, const double* D);
Sameer Agarwal290b9752013-02-17 16:50:37 -0800134 virtual void RightMultiply(const double* x, double* y) const;
135 virtual int num_rows() const;
136
137 private:
138 const SparseMatrix* matrix_;
139};
140
141} // namespace internal
142} // namespace ceres
143
144#endif // CERES_INTERNAL_PRECONDITIONER_H_