OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IncompleteLUT
(Results
1 - 5
of
5
) sorted by null
/external/eigen/test/
bicgstab.cpp
17
BiCGSTAB<SparseMatrix<T>,
IncompleteLUT
<T> > bicgstab_colmajor_ilut;
/external/eigen/unsupported/test/
dgmres.cpp
18
DGMRES<SparseMatrix<T>,
IncompleteLUT
<T> > dgmres_colmajor_ilut;
gmres.cpp
18
GMRES<SparseMatrix<T>,
IncompleteLUT
<T> > gmres_colmajor_ilut;
/external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteLUT.h
66
* \class
IncompleteLUT
96
class
IncompleteLUT
: internal::noncopyable
108
IncompleteLUT
()
114
IncompleteLUT
(const MatrixType& mat, const RealScalar& droptol=NumTraits<Scalar>::dummy_precision(), int fillfactor = 10)
133
eigen_assert(m_isInitialized && "
IncompleteLUT
is not initialized.");
149
IncompleteLUT
<Scalar>& compute(const MatrixType& amat)
169
template<typename Rhs> inline const internal::solve_retval<
IncompleteLUT
, Rhs>
172
eigen_assert(m_isInitialized && "
IncompleteLUT
is not initialized.");
174
&& "
IncompleteLUT
::solve(): invalid number of rows of the right hand side matrix b");
175
return internal::solve_retval<
IncompleteLUT
, Rhs>(*this, b.derived())
[
all
...]
/external/eigen/bench/spbench/
spbenchsolver.h
368
BiCGSTAB<SpMat,
IncompleteLUT
<Scalar> > solver;
382
GMRES<SpMat,
IncompleteLUT
<Scalar> > solver;
Completed in 1555 milliseconds