/external/ceres-solver/internal/ceres/ |
linear_solver.h | 172 preconditioner(NULL), 211 // simplest form a preconditioner is a matrix M such that instead 220 // A null preconditioner is equivalent to an identity matrix being 221 // used a preconditioner. 222 LinearOperator* preconditioner; member in struct:ceres::internal::LinearSolver::PerSolveOptions
|
cgnr_solver.cc | 72 cg_per_solve_options.preconditioner = preconditioner_.get();
|
conjugate_gradients_solver.cc | 119 // Apply preconditioner 120 if (per_solve_options.preconditioner != NULL) { 122 per_solve_options.preconditioner->RightMultiply(r.data(), z.data());
|
iterative_schur_complement_solver.cc | 46 #include "ceres/preconditioner.h" 102 // the preconditioner. 111 Preconditioner::Options preconditioner_options; 147 LOG(FATAL) << "Unknown Preconditioner Type"; 154 cg_per_solve_options.preconditioner = preconditioner_.get(); 164 cg_summary.message = "Preconditioner update failed.";
|
system_test.cc | 492 #define CONFIGURE(linear_solver, sparse_linear_algebra_library_type, ordering, preconditioner) \ 496 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 | 166 $(CERES_SRC_PATH)/preconditioner.cc \
|
/external/ceres-solver/jni/ |
Android.mk | 157 $(CERES_SRC_PATH)/preconditioner.cc \
|