OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:linear_solver_type
(Results
1 - 24
of
24
) sorted by null
/external/ceres-solver/internal/ceres/
unsymmetric_linear_solver_test.cc
60
LinearSolverType
linear_solver_type
,
63
options.type =
linear_solver_type
;
76
if (
linear_solver_type
== DENSE_QR ||
77
linear_solver_type
== DENSE_NORMAL_CHOLESKY) {
79
} else if (
linear_solver_type
== SPARSE_NORMAL_CHOLESKY) {
82
LOG(FATAL) << "Unknown linear solver : " <<
linear_solver_type
;
solver_impl_test.cc
282
options.
linear_solver_type
= DENSE_SCHUR;
344
options.
linear_solver_type
= DENSE_SCHUR;
418
options.
linear_solver_type
= DENSE_SCHUR;
501
options.
linear_solver_type
= SPARSE_NORMAL_CHOLESKY;
509
options.
linear_solver_type
= DENSE_QR;
520
options.
linear_solver_type
= DENSE_QR;
531
options.
linear_solver_type
= DENSE_QR;
542
options.
linear_solver_type
= DENSE_SCHUR;
556
EXPECT_EQ(options.
linear_solver_type
, DENSE_SCHUR);
566
options.
linear_solver_type
= ITERATIVE_SCHUR
[
all
...]
solver_impl.cc
384
summary->linear_solver_type_given = original_options.
linear_solver_type
;
385
summary->linear_solver_type_used = options.
linear_solver_type
;
400
if (IsSchurType(options.
linear_solver_type
)) {
535
if (IsSchurType(options.
linear_solver_type
) &&
700
if (original_num_groups == 1 && IsSchurType(options->
linear_solver_type
)) {
733
if (IsSchurType(options->
linear_solver_type
) &&
737
if (options->
linear_solver_type
== SPARSE_SCHUR) {
738
options->
linear_solver_type
= SPARSE_NORMAL_CHOLESKY;
740
} else if (options->
linear_solver_type
== DENSE_SCHUR) {
744
options->
linear_solver_type
= DENSE_QR
[
all
...]
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
...]
evaluator.cc
52
switch (options.
linear_solver_type
) {
90
evaluator_options.
linear_solver_type
= SPARSE_NORMAL_CHOLESKY;
evaluator.h
61
linear_solver_type
(DENSE_QR) {}
65
LinearSolverType
linear_solver_type
;
member in struct:ceres::internal::Evaluator::Options
schur_complement_solver_test.cc
97
ceres::LinearSolverType
linear_solver_type
,
104
options.type =
linear_solver_type
;
coordinate_descent_minimizer.cc
114
evaluator_options_.
linear_solver_type
= DENSE_QR;
trust_region_minimizer_test.cc
365
options.
linear_solver_type
= ceres::DENSE_QR;
evaluator_test.cc
162
options.
linear_solver_type
= GetParam().first;
633
options.
linear_solver_type
= DENSE_QR;
/external/ceres-solver/docs/
changes.tex
9
options.
linear_solver_type
= ceres::DENSE_SCHUR
14
options.
linear_solver_type
= ceres::DENSE_SCHUR
18
options.
linear_solver_type
= ceres::DENSE_SCHUR;
30
options.
linear_solver_type
= ceres::DENSE_SCHUR;
bundleadjustment.tex
94
options.
linear_solver_type
= ceres::DENSE_SCHUR;
helloworld.tex
51
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
80
options.
linear_solver_type
= ceres::DENSE_QR;
quadratic_numeric_diff.cc
84
options.
linear_solver_type
= ceres::DENSE_QR;
circle_fit.cc
152
options.
linear_solver_type
= ceres::DENSE_QR;
powell.cc
131
options.
linear_solver_type
= ceres::DENSE_QR;
data_fitting.cc
156
options.
linear_solver_type
= ceres::DENSE_QR;
denoising.cc
147
options.
linear_solver_type
= ceres::SPARSE_NORMAL_CHOLESKY;
simple_bundle_adjuster.cc
203
options.
linear_solver_type
= ceres::DENSE_SCHUR;
bundle_adjuster.cc
125
&options->
linear_solver_type
));
nist.cc
406
&options->
linear_solver_type
));
/external/ceres-solver/include/ceres/
solver.h
80
linear_solver_type
= DENSE_QR;
82
linear_solver_type
= SPARSE_NORMAL_CHOLESKY;
218
LinearSolverType
linear_solver_type
;
member in struct:ceres::Solver::Options
Completed in 341 milliseconds