OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:linear_solver_type
(Results
1 - 25
of
26
) sorted by null
1
2
/external/ceres-solver/internal/ceres/
evaluator.cc
52
switch (options.
linear_solver_type
) {
solver_impl_test.cc
287
options.
linear_solver_type
= DENSE_SCHUR;
349
options.
linear_solver_type
= DENSE_SCHUR;
418
options.
linear_solver_type
= DENSE_SCHUR;
501
options.
linear_solver_type
= SPARSE_NORMAL_CHOLESKY;
511
options.
linear_solver_type
= DENSE_QR;
522
options.
linear_solver_type
= DENSE_QR;
533
options.
linear_solver_type
= DENSE_QR;
544
options.
linear_solver_type
= DENSE_SCHUR;
558
EXPECT_EQ(options.
linear_solver_type
, DENSE_SCHUR);
568
options.
linear_solver_type
= ITERATIVE_SCHUR
[
all
...]
evaluator.h
64
linear_solver_type
(DENSE_QR) {}
68
LinearSolverType
linear_solver_type
;
member in struct:ceres::internal::Evaluator::Options
system_test.cc
66
SolverConfig(LinearSolverType
linear_solver_type
,
69
:
linear_solver_type
(
linear_solver_type
),
76
SolverConfig(LinearSolverType
linear_solver_type
,
80
:
linear_solver_type
(
linear_solver_type
),
90
LinearSolverTypeToString(
linear_solver_type
),
97
LinearSolverType
linear_solver_type
;
member in struct:ceres::internal::SolverConfig
132
options.
linear_solver_type
= config.
linear_solver_type
;
[
all
...]
solver_impl.cc
510
summary->linear_solver_type_given = original_options.
linear_solver_type
;
511
summary->linear_solver_type_used = options.
linear_solver_type
;
751
options.
linear_solver_type
= CGNR;
[
all
...]
schur_complement_solver_test.cc
89
ceres::LinearSolverType
linear_solver_type
,
98
options.type =
linear_solver_type
;
c_api.cc
182
options.
linear_solver_type
= ceres::DENSE_QR;
solver_impl.h
205
const LinearSolverType
linear_solver_type
,
evaluator_test.cc
104
options.
linear_solver_type
= GetParam().first;
575
options.
linear_solver_type
= DENSE_QR;
coordinate_descent_minimizer.cc
114
evaluator_options_.
linear_solver_type
= DENSE_QR;
trust_region_minimizer_test.cc
389
options.
linear_solver_type
= ceres::DENSE_QR;
/external/ceres-solver/examples/
quadratic.cc
83
options.
linear_solver_type
= ceres::DENSE_QR;
quadratic_auto_diff.cc
81
options.
linear_solver_type
= ceres::DENSE_QR;
quadratic_numeric_diff.cc
76
options.
linear_solver_type
= ceres::DENSE_QR;
circle_fit.cc
152
options.
linear_solver_type
= ceres::DENSE_QR;
powell.cc
134
options.
linear_solver_type
= ceres::DENSE_QR;
curve_fitting.cc
154
options.
linear_solver_type
= ceres::DENSE_QR;
data_fitting.cc
156
options.
linear_solver_type
= ceres::DENSE_QR;
denoising.cc
153
options.
linear_solver_type
= ceres::SPARSE_NORMAL_CHOLESKY;
robust_curve_fitting.cc
154
options.
linear_solver_type
= ceres::DENSE_QR;
simple_bundle_adjuster.cc
211
options.
linear_solver_type
= ceres::DENSE_SCHUR;
bundle_adjuster.cc
125
&options->
linear_solver_type
));
libmv_bundle_adjuster.cc
761
options.
linear_solver_type
= ceres::ITERATIVE_SCHUR;
nist.cc
487
&options->
linear_solver_type
));
/external/ceres-solver/include/ceres/
solver.h
95
linear_solver_type
= DENSE_QR;
97
linear_solver_type
= SPARSE_NORMAL_CHOLESKY;
383
LinearSolverType
linear_solver_type
;
member in struct:ceres::Solver::Options
[
all
...]
Completed in 140 milliseconds
1
2