Go to the documentation of this file.
12 #ifndef EIGEN_MINRES_H_
13 #define EIGEN_MINRES_H_
29 template<
typename MatrixType,
typename Rhs,
typename Dest,
typename Preconditioner>
32 const Preconditioner& precond,
Index& iters,
51 const Index maxIters(iters);
53 const RealScalar threshold2(tol_error*tol_error*rhsNorm2);
57 VectorType v( VectorType::Zero(
N) );
58 VectorType v_new(rhs-
mat*
x);
61 VectorType w_new(precond.solve(v_new));
64 eigen_assert(beta_new2 >= 0.0 &&
"PRECONDITIONER IS NOT POSITIVE DEFINITE");
75 VectorType p_old(VectorType::Zero(
N));
80 while ( iters < maxIters )
98 v_new.noalias() =
mat*w - beta*v_old;
101 w_new = precond.solve(v_new);
102 beta_new2 = v_new.dot(w_new);
103 eigen_assert(beta_new2 >= 0.0 &&
"PRECONDITIONER IS NOT POSITIVE DEFINITE");
104 beta_new =
sqrt(beta_new2);
122 p.noalias()=(w-r2*p_old-r3*p_oold) /r1;
123 x += beta_one*
c*eta*p;
127 residualNorm2 *=
s*
s;
129 if ( residualNorm2 < threshold2)
140 tol_error =
std::sqrt(residualNorm2 / rhsNorm2);
145 template<
typename _MatrixType,
int _UpLo=
Lower,
146 typename _Preconditioner = IdentityPreconditioner>
151 template<
typename _MatrixType,
int _UpLo,
typename _Preconditioner>
198 template<
typename _MatrixType,
int _UpLo,
typename _Preconditioner>
232 template<
typename MatrixDerived>
239 template<
typename Rhs,
typename Dest>
245 TransposeInput = (!MatrixWrapper::MatrixFree)
247 && (!MatrixType::IsRowMajor)
255 >::type SelfAdjointWrapper;
259 RowMajorWrapper row_mat(
matrix());
260 for(
int j=0; j<
b.cols(); ++j)
275 template<
typename Rhs,
typename Dest>
288 #endif // EIGEN_MINRES_H
const EIGEN_DEVICE_FUNC SqrtReturnType sqrt() const
MINRES(const EigenBase< MatrixDerived > &A)
Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > MatrixType
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half &a, const half &b)
NumTraits< Scalar >::Real RealScalar
void _solve_with_guess_impl(const Rhs &b, Dest &x) const
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
void _solve_impl(const Rhs &b, MatrixBase< Dest > &x) const
A minimal residual solver for sparse symmetric problems.
_Preconditioner Preconditioner
_Preconditioner Preconditioner
Index maxIterations() const
Block< Derived, internal::traits< Derived >::RowsAtCompileTime, 1, !IsRowMajor > ColXpr
Base class for linear iterative solvers.
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
void _solve_impl(const Rhs &b, SparseMatrixBase< DestDerived > &aDest) const
const ActualMatrixType & matrix() const
EIGEN_DONT_INLINE void minres(const MatrixType &mat, const Rhs &rhs, Dest &x, const Preconditioner &precond, Index &iters, typename Dest::RealScalar &tol_error)
MatrixType::RealScalar RealScalar
IterativeSolverBase< MINRES > Base
Base class for all dense matrices, vectors, and expressions.
#define EIGEN_IMPLIES(a, b)
MatrixType A(a, *n, *n, *lda)
Expression of an array as a mathematical vector or matrix.
MatrixWrapper::ActualMatrixType ActualMatrixType
Preconditioner m_preconditioner
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
MatrixType::Scalar Scalar
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
#define EIGEN_DONT_INLINE
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:58