Home
last modified time | relevance | path

Searched refs:linear_solver_options (Results 1 – 3 of 3) sorted by relevance

/external/ceres-solver/internal/ceres/
Dsolver_impl.cc844 LinearSolver::Options linear_solver_options; in CreateLinearSolver() local
845 linear_solver_options.min_num_iterations = in CreateLinearSolver()
847 linear_solver_options.max_num_iterations = in CreateLinearSolver()
849 linear_solver_options.type = options->linear_solver_type; in CreateLinearSolver()
850 linear_solver_options.preconditioner_type = options->preconditioner_type; in CreateLinearSolver()
851 linear_solver_options.visibility_clustering_type = in CreateLinearSolver()
853 linear_solver_options.sparse_linear_algebra_library_type = in CreateLinearSolver()
855 linear_solver_options.dense_linear_algebra_library_type = in CreateLinearSolver()
857 linear_solver_options.use_postordering = options->use_postordering; in CreateLinearSolver()
858 linear_solver_options.dynamic_sparsity = options->dynamic_sparsity; in CreateLinearSolver()
[all …]
Dcoordinate_descent_minimizer.cc135 LinearSolver::Options linear_solver_options; in Minimize() local
136 linear_solver_options.type = DENSE_QR; in Minimize()
139 linear_solvers[i] = LinearSolver::Create(linear_solver_options); in Minimize()
Dtrust_region_minimizer_test.cc214 LinearSolver::Options linear_solver_options; in IsTrustRegionSolveSuccessful() local
215 DenseQRSolver linear_solver(linear_solver_options); in IsTrustRegionSolveSuccessful()