IterativeSolverBase.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2011 Gael Guennebaud <gael.guennebaud@inria.fr>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_ITERATIVE_SOLVER_BASE_H
11 #define EIGEN_ITERATIVE_SOLVER_BASE_H
12 
13 namespace Eigen {
14 
20 template< typename Derived>
22 {
23 public:
26  typedef typename MatrixType::Scalar Scalar;
27  typedef typename MatrixType::Index Index;
28  typedef typename MatrixType::RealScalar RealScalar;
29 
30 public:
31 
32  Derived& derived() { return *static_cast<Derived*>(this); }
33  const Derived& derived() const { return *static_cast<const Derived*>(this); }
34 
37  : mp_matrix(0)
38  {
39  init();
40  }
41 
52  IterativeSolverBase(const MatrixType& A)
53  {
54  init();
55  compute(A);
56  }
57 
59 
65  Derived& analyzePattern(const MatrixType& A)
66  {
67  m_preconditioner.analyzePattern(A);
68  m_isInitialized = true;
69  m_analysisIsOk = true;
70  m_info = Success;
71  return derived();
72  }
73 
83  Derived& factorize(const MatrixType& A)
84  {
85  eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
86  mp_matrix = &A;
87  m_preconditioner.factorize(A);
88  m_factorizationIsOk = true;
89  m_info = Success;
90  return derived();
91  }
92 
103  Derived& compute(const MatrixType& A)
104  {
105  mp_matrix = &A;
106  m_preconditioner.compute(A);
107  m_isInitialized = true;
108  m_analysisIsOk = true;
109  m_factorizationIsOk = true;
110  m_info = Success;
111  return derived();
112  }
113 
115  Index rows() const { return mp_matrix ? mp_matrix->rows() : 0; }
117  Index cols() const { return mp_matrix ? mp_matrix->cols() : 0; }
118 
120  RealScalar tolerance() const { return m_tolerance; }
121 
123  Derived& setTolerance(const RealScalar& tolerance)
124  {
126  return derived();
127  }
128 
130  Preconditioner& preconditioner() { return m_preconditioner; }
131 
133  const Preconditioner& preconditioner() const { return m_preconditioner; }
134 
136  int maxIterations() const
137  {
138  return (mp_matrix && m_maxIterations<0) ? mp_matrix->cols() : m_maxIterations;
139  }
140 
142  Derived& setMaxIterations(int maxIters)
143  {
144  m_maxIterations = maxIters;
145  return derived();
146  }
147 
149  int iterations() const
150  {
151  eigen_assert(m_isInitialized && "ConjugateGradient is not initialized.");
152  return m_iterations;
153  }
154 
156  RealScalar error() const
157  {
158  eigen_assert(m_isInitialized && "ConjugateGradient is not initialized.");
159  return m_error;
160  }
161 
166  template<typename Rhs> inline const internal::solve_retval<Derived, Rhs>
167  solve(const MatrixBase<Rhs>& b) const
168  {
169  eigen_assert(m_isInitialized && "IterativeSolverBase is not initialized.");
170  eigen_assert(rows()==b.rows()
171  && "IterativeSolverBase::solve(): invalid number of rows of the right hand side matrix b");
172  return internal::solve_retval<Derived, Rhs>(derived(), b.derived());
173  }
174 
179  template<typename Rhs>
181  solve(const SparseMatrixBase<Rhs>& b) const
182  {
183  eigen_assert(m_isInitialized && "IterativeSolverBase is not initialized.");
184  eigen_assert(rows()==b.rows()
185  && "IterativeSolverBase::solve(): invalid number of rows of the right hand side matrix b");
187  }
188 
191  {
192  eigen_assert(m_isInitialized && "IterativeSolverBase is not initialized.");
193  return m_info;
194  }
195 
197  template<typename Rhs, typename DestScalar, int DestOptions, typename DestIndex>
199  {
200  eigen_assert(rows()==b.rows());
201 
202  int rhsCols = b.cols();
203  int size = b.rows();
206  for(int k=0; k<rhsCols; ++k)
207  {
208  tb = b.col(k);
209  tx = derived().solve(tb);
210  dest.col(k) = tx.sparseView(0);
211  }
212  }
213 
214 protected:
215  void init()
216  {
217  m_isInitialized = false;
218  m_analysisIsOk = false;
219  m_factorizationIsOk = false;
220  m_maxIterations = -1;
222  }
223  const MatrixType* mp_matrix;
224  Preconditioner m_preconditioner;
225 
227  RealScalar m_tolerance;
228 
229  mutable RealScalar m_error;
230  mutable int m_iterations;
233 };
234 
235 namespace internal {
236 
237 template<typename Derived, typename Rhs>
239  : sparse_solve_retval_base<IterativeSolverBase<Derived>, Rhs>
240 {
243 
244  template<typename Dest> void evalTo(Dest& dst) const
245  {
246  dec().derived()._solve_sparse(rhs(),dst);
247  }
248 };
249 
250 } // end namespace internal
251 
252 } // end namespace Eigen
253 
254 #endif // EIGEN_ITERATIVE_SOLVER_BASE_H
Derived & setTolerance(const RealScalar &tolerance)
A versatible sparse matrix representation.
Definition: SparseMatrix.h:85
Definition: LDLT.h:16
internal::traits< Derived >::Preconditioner Preconditioner
Holds information about the various numeric (i.e. scalar) types allowed by Eigen. ...
Definition: NumTraits.h:88
const internal::sparse_solve_retval< IterativeSolverBase, Rhs > solve(const SparseMatrixBase< Rhs > &b) const
Derived & analyzePattern(const MatrixType &A)
Base class of any sparse matrices or sparse expressions.
const Derived & derived() const
Derived & compute(const MatrixType &A)
ComputationInfo info() const
Derived & factorize(const MatrixType &A)
#define EIGEN_MAKE_SPARSE_SOLVE_HELPERS(DecompositionType, Rhs)
Definition: SparseSolve.h:71
void _solve_sparse(const Rhs &b, SparseMatrix< DestScalar, DestOptions, DestIndex > &dest) const
Derived & setMaxIterations(int maxIters)
const Derived & derived() const
IterativeSolverBase(const MatrixType &A)
MatrixType::RealScalar RealScalar
Preconditioner & preconditioner()
const internal::solve_retval< Derived, Rhs > solve(const MatrixBase< Rhs > &b) const
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:127
#define eigen_assert(x)
internal::traits< Derived >::MatrixType MatrixType
ComputationInfo
Definition: Constants.h:374
Base class for linear iterative solvers.
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
const Preconditioner & preconditioner() const


tuw_aruco
Author(s): Lukas Pfeifhofer
autogenerated on Mon Jun 10 2019 15:40:51