HomeSort by relevance Sort by last modified time
    Searched defs:Preconditioner (Results 1 - 6 of 6) sorted by null

  /external/ceres-solver/internal/ceres/
preconditioner.cc 31 #include "ceres/preconditioner.h"
37 Preconditioner::~Preconditioner() {
preconditioner.h 46 class Preconditioner : public LinearOperator {
62 // If possible, how many threads the preconditioner can use.
97 virtual ~Preconditioner();
99 // Update the numerical value of the preconditioner for the linear
127 // This templated subclass of Preconditioner serves as a base class for
131 class TypedPreconditioner : public Preconditioner {
148 // Wrap a SparseMatrix object as a preconditioner.
155 // Preconditioner interface
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 22 * \param precond A preconditioner being able to efficiently solve for an
28 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
30 const Preconditioner& precond, int& iters,
100 typedef _Preconditioner Preconditioner;
112 * \tparam _Preconditioner the type of the preconditioner. Default is DiagonalPreconditioner
165 typedef _Preconditioner Preconditioner;
ConjugateGradient.h 21 * \param precond A preconditioner being able to efficiently solve for an
26 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
29 const Preconditioner& precond, int& iters,
90 typedef _Preconditioner Preconditioner;
104 * \tparam _Preconditioner the type of the preconditioner. Default is DiagonalPreconditioner
157 typedef _Preconditioner Preconditioner;
IterativeSolverBase.h 25 typedef typename internal::traits<Derived>::Preconditioner Preconditioner;
62 * Currently, this function mostly call analyzePattern on the preconditioner. In the future
76 * Currently, this function mostly call factorize on the preconditioner.
95 * Currently, this function mostly initialized/compute the preconditioner. In the future
129 /** \returns a read-write reference to the preconditioner for custom configuration. */
130 Preconditioner& preconditioner() { return m_preconditioner; } function in class:Eigen::IterativeSolverBase
132 /** \returns a read-only reference to the preconditioner. */
133 const Preconditioner& preconditioner() const { return m_preconditioner; function in class:Eigen::IterativeSolverBase
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 26 * \param precond preconditioner used
55 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
56 bool gmres(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond,
213 typedef _Preconditioner Preconditioner;
225 * \tparam _Preconditioner the type of the preconditioner. Default is DiagonalPreconditioner
281 typedef _Preconditioner Preconditioner;

Completed in 104 milliseconds