/external/ceres-solver/internal/ceres/ |
implicit_schur_complement.h | 93 // preconditioner indicates whether the inverse of the matrix F'F 94 // should be computed or not as a preconditioner for the Schur 99 ImplicitSchurComplement(int num_eliminate_blocks, bool preconditioner);
|
linear_solver.h | 150 preconditioner(NULL), 189 // simplest form a preconditioner is a matrix M such that instead 198 // A null preconditioner is equivalent to an identity matrix being 199 // used a preconditioner. 200 LinearOperator* preconditioner; member in struct:ceres::internal::LinearSolver::PerSolveOptions
|
cgnr_solver.cc | 67 cg_per_solve_options.preconditioner = preconditioner_.get();
|
conjugate_gradients_solver.cc | 120 // Apply preconditioner 121 if (per_solve_options.preconditioner != NULL) { 123 per_solve_options.preconditioner->RightMultiply(r.data(), z.data());
|
implicit_schur_complement.cc | 45 bool preconditioner) 47 preconditioner_(preconditioner),
|
iterative_schur_complement_solver.cc | 45 #include "ceres/preconditioner.h" 100 // matrix with the block diagonal of the matrix F'F as the preconditioner. 109 Preconditioner::Options preconditioner_options; 143 LOG(FATAL) << "Unknown Preconditioner Type"; 150 cg_per_solve_options.preconditioner = preconditioner_.get();
|
system_test.cc | 488 #define CONFIGURE(linear_solver, sparse_linear_algebra_library_type, ordering, preconditioner) \ 492 preconditioner))
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
IterativeSolverBase.h | 25 typedef typename internal::traits<Derived>::Preconditioner Preconditioner; 62 * Currently, this function mostly call analyzePattern on the preconditioner. In the future 76 * Currently, this function mostly call factorize on the preconditioner. 95 * Currently, this function mostly initialized/compute the preconditioner. In the future 129 /** \returns a read-write reference to the preconditioner for custom configuration. */ 130 Preconditioner& preconditioner() { return m_preconditioner; } function in class:Eigen::IterativeSolverBase 132 /** \returns a read-only reference to the preconditioner. */ 133 const Preconditioner& preconditioner() const { return m_preconditioner; function in class:Eigen::IterativeSolverBase [all...] |
/external/ceres-solver/examples/ |
bundle_adjuster.cc | 82 DEFINE_string(preconditioner, "jacobi", "Options are: "
|
nist.cc | 93 DEFINE_string(preconditioner, "jacobi", "Options are: "
|
/external/ceres-solver/ |
Android.mk | 127 internal/ceres/preconditioner.cc \
|
/external/ceres-solver/jni/ |
Android.mk | 158 $(CERES_SRC_PATH)/preconditioner.cc \
|