OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minimizer_type
(Results
1 - 10
of
10
) sorted by null
/external/ceres-solver/internal/ceres/
callbacks.h
59
LoggingCallback(MinimizerType
minimizer_type
, bool log_to_stdout);
64
const MinimizerType
minimizer_type
;
member in class:ceres::internal::LoggingCallback
callbacks.cc
55
LoggingCallback::LoggingCallback(const MinimizerType
minimizer_type
,
57
:
minimizer_type
(
minimizer_type
),
65
if (
minimizer_type
== LINE_SEARCH) {
79
} else if (
minimizer_type
== TRUST_REGION) {
solver_test.cc
48
options.
minimizer_type
= TRUST_REGION;
55
options.
minimizer_type
= LINE_SEARCH;
165
options.
minimizer_type
= TRUST_REGION;
177
options.
minimizer_type
= LINE_SEARCH;
191
options.
minimizer_type
= TRUST_REGION;
205
options.
minimizer_type
= LINE_SEARCH;
220
options.
minimizer_type
= TRUST_REGION;
234
options.
minimizer_type
= LINE_SEARCH;
solver.cc
302
if (
minimizer_type
== TRUST_REGION) {
306
CHECK_EQ(
minimizer_type
, LINE_SEARCH);
341
:
minimizer_type
(TRUST_REGION),
423
if (
minimizer_type
== TRUST_REGION) {
562
if (
minimizer_type
== TRUST_REGION) {
582
if (
minimizer_type
== TRUST_REGION) {
solver_impl.cc
196
if (options.
minimizer_type
== TRUST_REGION) {
212
summary->
minimizer_type
= TRUST_REGION;
449
summary->
minimizer_type
= LINE_SEARCH;
[
all
...]
/external/ceres-solver/include/ceres/
solver.h
62
minimizer_type
= TRUST_REGION;
169
MinimizerType
minimizer_type
;
member in struct:ceres::Solver::Options
742
MinimizerType
minimizer_type
;
member in struct:ceres::Solver::Summary
[
all
...]
/external/ceres-solver/examples/
powell.cc
129
&options.
minimizer_type
))
denoising.cc
150
options.
minimizer_type
= ceres::LINE_SEARCH;