HomeSort by relevance Sort by last modified time
    Searched refs:SparseMatrix (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /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 */) {
compressed_row_jacobian_writer.h 43 class SparseMatrix;
61 SparseMatrix* CreateJacobian() const;
66 SparseMatrix* base_jacobian);
preconditioner.cc 41 const SparseMatrix* matrix)
48 bool SparseMatrixPreconditionerWrapper::UpdateImpl(const SparseMatrix& A,
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,
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 44 class SparseMatrix;
143 // of a SparseMatrix.
144 typedef TypedPreconditioner<SparseMatrix> SparseMatrixPreconditioner; // NOLINT
148 // Wrap a SparseMatrix object as a preconditioner.
152 explicit SparseMatrixPreconditionerWrapper(const SparseMatrix* matrix);
160 virtual bool UpdateImpl(const SparseMatrix& A, const double* D);
161 const SparseMatrix* matrix_;
linear_least_squares_problems.h 51 scoped_ptr<SparseMatrix> A;
76 const SparseMatrix* A,
evaluator.h 50 class SparseMatrix;
105 // instantiate a SparseMatrix object with the appropriate sparsity structure
116 virtual SparseMatrix* CreateJacobian() const = 0;
144 SparseMatrix* jacobian) = 0;
153 SparseMatrix* jacobian) {
trust_region_strategy.h 42 class SparseMatrix;
134 SparseMatrix* jacobian,
levenberg_marquardt_strategy.h 54 SparseMatrix* jacobian,
block_evaluate_preparer.cc 52 SparseMatrix* jacobian,
  /external/eigen/test/
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;
simplicial_cholesky.cpp 14 SimplicialCholesky<SparseMatrix<T>, Lower> chol_colmajor_lower;
15 SimplicialCholesky<SparseMatrix<T>, Upper> chol_colmajor_upper;
16 SimplicialLLT<SparseMatrix<T>, Lower> llt_colmajor_lower;
17 SimplicialLDLT<SparseMatrix<T>, Upper> llt_colmajor_upper;
18 SimplicialLDLT<SparseMatrix<T>, Lower> ldlt_colmajor_lower;
19 SimplicialLDLT<SparseMatrix<T>, Upper> ldlt_colmajor_upper;
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;
  /external/eigen/unsupported/test/
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;
sparse_extra.cpp 18 bool test_random_setter(SparseMatrix<Scalar,Options>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords)
20 typedef SparseMatrix<Scalar,Options> SparseType;
79 if(internal::is_same<SparseMatrixType,SparseMatrix<Scalar,Flags> >::value)
138 CALL_SUBTEST_1( sparse_extra(SparseMatrix<double>(8, 8)) );
139 CALL_SUBTEST_2( sparse_extra(SparseMatrix<std::complex<double> >(s, s)) );
140 CALL_SUBTEST_1( sparse_extra(SparseMatrix<double>(s, s)) );

Completed in 246 milliseconds

1 2 3 4