OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SparseMatrix
(Results
1 - 25
of
116
) sorted by null
1
2
3
4
5
/external/ceres-solver/internal/ceres/
sparse_matrix.cc
36
SparseMatrix
::~
SparseMatrix
() {
block_evaluate_preparer.h
45
class
SparseMatrix
;
62
SparseMatrix
* jacobian,
block_jacobian_writer.h
50
class
SparseMatrix
;
63
SparseMatrix
* CreateJacobian() const;
68
SparseMatrix
* /* jacobian */) {
dynamic_compressed_row_jacobian_writer.h
44
class
SparseMatrix
;
64
SparseMatrix
* CreateJacobian() const;
74
SparseMatrix
* base_jacobian);
scratch_evaluate_preparer.h
45
class
SparseMatrix
;
57
SparseMatrix
* jacobian,
sparse_matrix.h
65
class
SparseMatrix
: public LinearOperator {
67
virtual ~
SparseMatrix
();
94
// array depends on the particular kind of
SparseMatrix
being
trust_region_minimizer.h
54
void EstimateScale(const
SparseMatrix
& jacobian, double* scale) const;
56
const
SparseMatrix
* jacobian,
compressed_row_jacobian_writer.h
44
class
SparseMatrix
;
95
SparseMatrix
* CreateJacobian() const;
100
SparseMatrix
* base_jacobian);
dynamic_compressed_row_finalizer.h
41
void operator()(
SparseMatrix
* base_jacobian, int num_parameters) {
dogleg_strategy.h
62
SparseMatrix
* jacobian,
84
SparseMatrix
* jacobian,
86
void ComputeCauchyPoint(
SparseMatrix
* jacobian);
87
void ComputeGradient(
SparseMatrix
* jacobian, const double* residuals);
89
bool ComputeSubspaceModel(
SparseMatrix
* jacobian);
preconditioner.h
45
class
SparseMatrix
;
153
// of a
SparseMatrix
.
154
typedef TypedPreconditioner<
SparseMatrix
> SparseMatrixPreconditioner; // NOLINT
158
// Wrap a
SparseMatrix
object as a preconditioner.
162
explicit SparseMatrixPreconditionerWrapper(const
SparseMatrix
* matrix);
170
virtual bool UpdateImpl(const
SparseMatrix
& A, const double* D);
171
const
SparseMatrix
* matrix_;
linear_least_squares_problems.h
51
scoped_ptr<
SparseMatrix
> A;
76
const
SparseMatrix
* A,
preconditioner.cc
51
const
SparseMatrix
* matrix)
58
bool SparseMatrixPreconditionerWrapper::UpdateImpl(const
SparseMatrix
& A,
/external/eigen/test/
simplicial_cholesky.cpp
14
SimplicialCholesky<
SparseMatrix
<T>, Lower> chol_colmajor_lower_amd;
15
SimplicialCholesky<
SparseMatrix
<T>, Upper> chol_colmajor_upper_amd;
16
SimplicialLLT<
SparseMatrix
<T>, Lower> llt_colmajor_lower_amd;
17
SimplicialLLT<
SparseMatrix
<T>, Upper> llt_colmajor_upper_amd;
18
SimplicialLDLT<
SparseMatrix
<T>, Lower> ldlt_colmajor_lower_amd;
19
SimplicialLDLT<
SparseMatrix
<T>, Upper> ldlt_colmajor_upper_amd;
20
SimplicialLDLT<
SparseMatrix
<T>, Lower, NaturalOrdering<int> > ldlt_colmajor_lower_nat;
21
SimplicialLDLT<
SparseMatrix
<T>, Upper, NaturalOrdering<int> > ldlt_colmajor_upper_nat;
cholmod_support.cpp
16
CholmodDecomposition<
SparseMatrix
<T>, Lower> g_chol_colmajor_lower; g_chol_colmajor_lower.setMode(CholmodSupernodalLLt);
17
CholmodDecomposition<
SparseMatrix
<T>, Upper> g_chol_colmajor_upper; g_chol_colmajor_upper.setMode(CholmodSupernodalLLt);
18
CholmodDecomposition<
SparseMatrix
<T>, Lower> g_llt_colmajor_lower; g_llt_colmajor_lower.setMode(CholmodSimplicialLLt);
19
CholmodDecomposition<
SparseMatrix
<T>, Upper> g_llt_colmajor_upper; g_llt_colmajor_upper.setMode(CholmodSimplicialLLt);
20
CholmodDecomposition<
SparseMatrix
<T>, Lower> g_ldlt_colmajor_lower; g_ldlt_colmajor_lower.setMode(CholmodLDLt);
21
CholmodDecomposition<
SparseMatrix
<T>, Upper> g_ldlt_colmajor_upper; g_ldlt_colmajor_upper.setMode(CholmodLDLt);
23
CholmodSupernodalLLT<
SparseMatrix
<T>, Lower> chol_colmajor_lower;
24
CholmodSupernodalLLT<
SparseMatrix
<T>, Upper> chol_colmajor_upper;
25
CholmodSimplicialLLT<
SparseMatrix
<T>, Lower> llt_colmajor_lower;
26
CholmodSimplicialLLT<
SparseMatrix
<T>, Upper> llt_colmajor_upper
[
all
...]
pastix_support.cpp
17
PastixLLT<
SparseMatrix
<T, ColMajor>, Eigen::Lower > pastix_llt_lower;
18
PastixLDLT<
SparseMatrix
<T, ColMajor>, Eigen::Lower > pastix_ldlt_lower;
19
PastixLLT<
SparseMatrix
<T, ColMajor>, Eigen::Upper > pastix_llt_upper;
20
PastixLDLT<
SparseMatrix
<T, ColMajor>, Eigen::Upper > pastix_ldlt_upper;
21
PastixLU<
SparseMatrix
<T, ColMajor> > pastix_lu;
34
PastixLU<
SparseMatrix
<T, ColMajor> > pastix_lu;
bicgstab.cpp
15
BiCGSTAB<
SparseMatrix
<T>, DiagonalPreconditioner<T> > bicgstab_colmajor_diag;
16
BiCGSTAB<
SparseMatrix
<T>, IdentityPreconditioner > bicgstab_colmajor_I;
17
BiCGSTAB<
SparseMatrix
<T>, IncompleteLUT<T> > bicgstab_colmajor_ilut;
18
//BiCGSTAB<
SparseMatrix
<T>, SSORPreconditioner<T> > bicgstab_colmajor_ssor;
conjugate_gradient.cpp
15
ConjugateGradient<
SparseMatrix
<T>, Lower> cg_colmajor_lower_diag;
16
ConjugateGradient<
SparseMatrix
<T>, Upper> cg_colmajor_upper_diag;
17
ConjugateGradient<
SparseMatrix
<T>, Lower, IdentityPreconditioner> cg_colmajor_lower_I;
18
ConjugateGradient<
SparseMatrix
<T>, Upper, IdentityPreconditioner> cg_colmajor_upper_I;
superlu_support.cpp
16
SuperLU<
SparseMatrix
<double> > superlu_double_colmajor;
17
SuperLU<
SparseMatrix
<std::complex<double> > > superlu_cplxdouble_colmajor;
umfpack_support.cpp
16
UmfPackLU<
SparseMatrix
<T, ColMajor> > umfpack_colmajor;
17
UmfPackLU<
SparseMatrix
<T, RowMajor> > umfpack_rowmajor;
pardiso_support.cpp
10
PardisoLLT <
SparseMatrix
<T, RowMajor>, Lower> pardiso_llt_lower;
11
PardisoLLT <
SparseMatrix
<T, RowMajor>, Upper> pardiso_llt_upper;
12
PardisoLDLT <
SparseMatrix
<T, RowMajor>, Lower> pardiso_ldlt_lower;
13
PardisoLDLT <
SparseMatrix
<T, RowMajor>, Upper> pardiso_ldlt_upper;
14
PardisoLU <
SparseMatrix
<T, RowMajor> > pardiso_lu;
sparselu.cpp
40
SparseLU<
SparseMatrix
<T, ColMajor> /*, COLAMDOrdering<int>*/ > sparselu_colamd; // COLAMDOrdering is the default
41
SparseLU<
SparseMatrix
<T, ColMajor>, AMDOrdering<int> > sparselu_amd;
42
SparseLU<
SparseMatrix
<T, ColMajor, long int>, NaturalOrdering<long int> > sparselu_natural;
/external/eigen/unsupported/test/
dgmres.cpp
16
DGMRES<
SparseMatrix
<T>, DiagonalPreconditioner<T> > dgmres_colmajor_diag;
17
DGMRES<
SparseMatrix
<T>, IdentityPreconditioner > dgmres_colmajor_I;
18
DGMRES<
SparseMatrix
<T>, IncompleteLUT<T> > dgmres_colmajor_ilut;
19
//GMRES<
SparseMatrix
<T>, SSORPreconditioner<T> > dgmres_colmajor_ssor;
gmres.cpp
16
GMRES<
SparseMatrix
<T>, DiagonalPreconditioner<T> > gmres_colmajor_diag;
17
GMRES<
SparseMatrix
<T>, IdentityPreconditioner > gmres_colmajor_I;
18
GMRES<
SparseMatrix
<T>, IncompleteLUT<T> > gmres_colmajor_ilut;
19
//GMRES<
SparseMatrix
<T>, SSORPreconditioner<T> > gmres_colmajor_ssor;
minres.cpp
17
MINRES<
SparseMatrix
<T>, Lower, DiagonalPreconditioner<T> > minres_colmajor_diag;
18
MINRES<
SparseMatrix
<T>, Lower, IdentityPreconditioner > minres_colmajor_I;
19
// MINRES<
SparseMatrix
<T>, Lower, IncompleteLUT<T> > minres_colmajor_ilut;
20
//minres<
SparseMatrix
<T>, SSORPreconditioner<T> > minres_colmajor_ssor;
Completed in 623 milliseconds
1
2
3
4
5