Searched refs:MINRES (Results 1 – 3 of 3) sorted by relevance
/external/eigen/unsupported/test/ |
D | minres.cpp | 17 MINRES<SparseMatrix<T>, Lower|Upper, DiagonalPreconditioner<T> > minres_colmajor_diag; in test_minres_T() 18 MINRES<SparseMatrix<T>, Lower, IdentityPreconditioner > minres_colmajor_lower_I; in test_minres_T() 19 MINRES<SparseMatrix<T>, Upper, IdentityPreconditioner > minres_colmajor_upper_I; in test_minres_T() 29 MINRES<SparseMatrix<T>, Lower, DiagonalPreconditioner<T> > minres_colmajor_lower_diag; in test_minres_T() 30 MINRES<SparseMatrix<T>, Upper, DiagonalPreconditioner<T> > minres_colmajor_upper_diag; in test_minres_T() 31 MINRES<SparseMatrix<T>, Upper|Lower, DiagonalPreconditioner<T> > minres_colmajor_uplo_diag; in test_minres_T()
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | MINRES.h | 148 class MINRES; variable 153 struct traits<MINRES<_MatrixType,_UpLo,_Preconditioner> > 198 class MINRES : public IterativeSolverBase<MINRES<_MatrixType,_UpLo,_Preconditioner> > 201 typedef IterativeSolverBase<MINRES> Base; 219 MINRES() : Base() {} 231 MINRES(const MatrixType& A) : Base(A) {} 234 ~MINRES(){} 242 inline const internal::solve_retval_with_guess<MINRES, Rhs, Guess> 249 <MINRES, Rhs, Guess>(*this, b.derived(), x0); 293 struct solve_retval<MINRES<_MatrixType,_UpLo,_Preconditioner>, Rhs> [all …]
|
/external/eigen/unsupported/Eigen/ |
D | IterativeSolvers | 41 #include "src/IterativeSolvers/MINRES.h"
|