Home
last modified time | relevance | path

Searched refs:DENSE_SCHUR (Results 1 – 18 of 18) sorted by relevance

/external/ceres-solver/internal/ceres/
Dschur_complement_solver_test.cc139 ComputeAndCompareSolutions(2, false, DENSE_SCHUR, EIGEN, SUITE_SPARSE, true); in TEST_F()
140 ComputeAndCompareSolutions(2, true, DENSE_SCHUR, EIGEN, SUITE_SPARSE, true); in TEST_F()
144 ComputeAndCompareSolutions(3, false, DENSE_SCHUR, EIGEN, SUITE_SPARSE, true); in TEST_F()
145 ComputeAndCompareSolutions(3, true, DENSE_SCHUR, EIGEN, SUITE_SPARSE, true); in TEST_F()
150 ComputeAndCompareSolutions(2, false, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
151 ComputeAndCompareSolutions(2, true, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
155 ComputeAndCompareSolutions(3, false, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
156 ComputeAndCompareSolutions(3, true, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
Dlinear_solver.cc58 if (linear_solver_type == DENSE_SCHUR) { in LinearSolverForZeroEBlocks()
91 case DENSE_SCHUR: in Create()
Devaluator_test.cc547 EvaluatorTestOptions(DENSE_SCHUR, 0),
548 EvaluatorTestOptions(DENSE_SCHUR, 1),
549 EvaluatorTestOptions(DENSE_SCHUR, 2),
550 EvaluatorTestOptions(DENSE_SCHUR, 3),
551 EvaluatorTestOptions(DENSE_SCHUR, 4),
Dtypes.cc51 CASESTR(DENSE_SCHUR); in LinearSolverTypeToString()
65 STRENUM(DENSE_SCHUR); in StringToLinearSolverType()
319 (type == DENSE_SCHUR) || in IsSchurType()
Devaluator.cc60 case DENSE_SCHUR: in Create()
Dsystem_test.cc295 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kAutomaticOrdering); in TEST()
498 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kAutomaticOrdering, IDENTITY); in TEST()
499 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kUserOrdering, IDENTITY); in TEST()
Dsolver.cc151 if (options.linear_solver_type == DENSE_SCHUR) { in TrustRegionOptionsAreValid()
429 linear_solver_type_used == DENSE_SCHUR || in FullReport()
Dreorder_program_test.cc84 options.linear_solver_type = DENSE_SCHUR; in TEST()
Dimplicit_schur_complement_test.cc87 options.type = DENSE_SCHUR; in ReducedLinearSystemAndSolution()
Dsolver_test.cc283 options.linear_solver_type = DENSE_SCHUR; in TEST()
Dsolver_impl.cc791 if (options->linear_solver_type == DENSE_SCHUR && in CreateLinearSolver()
/external/ceres-solver/include/ceres/
Dtypes.h83 DENSE_SCHUR, enumerator
/external/ceres-solver/docs/source/
Dversion_history.rst233 #. Faster ``DENSE_QR``, ``DENSE_NORMAL_CHOLESKY`` and ``DENSE_SCHUR``
239 ``DENSE_SCHUR``
322 a. Schur type solvers (``SPARSE_SCHUR``, ``DENSE_SCHUR``,
444 #. ``DENSE_SCHUR`` now supports multi-threading.
519 options.linear_solver_type = ceres::DENSE_SCHUR
527 options.linear_solver_type = ceres::DENSE_SCHUR
534 options.linear_solver_type = ceres::DENSE_SCHUR;
549 options.linear_solver_type = ceres::DENSE_SCHUR;
637 slightly slower ``DENSE_SCHUR`` and ``SPARSE_SCHUR`` solvers).
Dfaqs.rst141 cameras, use ``DENSE_SCHUR``.
153 which ``DENSE_SCHUR`` is too slow but ``SuiteSparse`` is not
Dbuilding.rst161 ``DENSE_SCHUR`` linear solver. The output should look something like
189 Linear solver DENSE_SCHUR DENSE_SCHUR
381 #. The solvers supported on Windows are ``DENSE_QR``, ``DENSE_SCHUR``,
Dtutorial.rst718 simplest of them ``DENSE_SCHUR``.
723 options.linear_solver_type = ceres::DENSE_SCHUR;
Dsolving.rst499 ``DENSE_SCHUR`` & ``SPARSE_SCHUR``
583 implements this strategy as the ``DENSE_SCHUR`` solver.
773 If the user is using one of the Schur solvers (``DENSE_SCHUR``,
1209 and ``DENSE_SCHUR`` solvers. For small to moderate sized probem
/external/ceres-solver/examples/
Dsimple_bundle_adjuster.cc211 options.linear_solver_type = ceres::DENSE_SCHUR; in main()