Files
ceres-solver/internal/ceres/minimizer.h
T

203 lines
8.2 KiB
C++
Raw Normal View History

2012-04-30 23:09:08 -07:00
// Ceres Solver - A fast non-linear least squares minimizer
// Copyright 2015 Google Inc. All rights reserved.
// http://ceres-solver.org/
2012-04-30 23:09:08 -07:00
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of Google Inc. nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Author: sameeragarwal@google.com (Sameer Agarwal)
#ifndef CERES_INTERNAL_MINIMIZER_H_
#define CERES_INTERNAL_MINIMIZER_H_
2013-06-24 17:50:56 -07:00
#include <string>
2012-04-30 23:09:08 -07:00
#include <vector>
2012-11-29 10:33:19 -08:00
#include "ceres/internal/port.h"
2012-04-30 23:09:08 -07:00
#include "ceres/iteration_callback.h"
2012-11-29 10:33:19 -08:00
#include "ceres/solver.h"
2012-04-30 23:09:08 -07:00
namespace ceres {
namespace internal {
class Evaluator;
2012-05-29 17:40:17 -07:00
class SparseMatrix;
class TrustRegionStrategy;
class CoordinateDescentMinimizer;
class LinearSolver;
2012-04-30 23:09:08 -07:00
// Interface for non-linear least squares solvers.
class Minimizer {
public:
// Options struct to control the behaviour of the Minimizer. Please
// see solver.h for detailed information about the meaning and
// default values of each of these parameters.
struct Options {
2012-05-29 17:40:17 -07:00
Options() {
Init(Solver::Options());
}
2012-04-30 23:09:08 -07:00
explicit Options(const Solver::Options& options) {
2012-05-29 17:40:17 -07:00
Init(options);
}
void Init(const Solver::Options& options) {
num_threads = options.num_threads;
2012-04-30 23:09:08 -07:00
max_num_iterations = options.max_num_iterations;
2012-06-11 14:21:42 -07:00
max_solver_time_in_seconds = options.max_solver_time_in_seconds;
2012-05-29 17:40:17 -07:00
max_step_solver_retries = 5;
2012-04-30 23:09:08 -07:00
gradient_tolerance = options.gradient_tolerance;
parameter_tolerance = options.parameter_tolerance;
function_tolerance = options.function_tolerance;
min_relative_decrease = options.min_relative_decrease;
eta = options.eta;
jacobi_scaling = options.jacobi_scaling;
2012-08-08 10:38:31 -07:00
use_nonmonotonic_steps = options.use_nonmonotonic_steps;
max_consecutive_nonmonotonic_steps =
options.max_consecutive_nonmonotonic_steps;
trust_region_problem_dump_directory =
options.trust_region_problem_dump_directory;
trust_region_minimizer_iterations_to_dump =
options.trust_region_minimizer_iterations_to_dump;
trust_region_problem_dump_format_type =
options.trust_region_problem_dump_format_type;
2012-05-29 17:40:17 -07:00
max_num_consecutive_invalid_steps =
options.max_num_consecutive_invalid_steps;
min_trust_region_radius = options.min_trust_region_radius;
2012-11-26 12:55:58 -08:00
line_search_direction_type = options.line_search_direction_type;
line_search_type = options.line_search_type;
2012-11-29 10:33:19 -08:00
nonlinear_conjugate_gradient_type =
options.nonlinear_conjugate_gradient_type;
max_lbfgs_rank = options.max_lbfgs_rank;
use_approximate_eigenvalue_bfgs_scaling =
options.use_approximate_eigenvalue_bfgs_scaling;
line_search_interpolation_type =
options.line_search_interpolation_type;
min_line_search_step_size = options.min_line_search_step_size;
line_search_sufficient_function_decrease =
options.line_search_sufficient_function_decrease;
max_line_search_step_contraction =
options.max_line_search_step_contraction;
min_line_search_step_contraction =
options.min_line_search_step_contraction;
max_num_line_search_step_size_iterations =
options.max_num_line_search_step_size_iterations;
max_num_line_search_direction_restarts =
options.max_num_line_search_direction_restarts;
line_search_sufficient_curvature_decrease =
options.line_search_sufficient_curvature_decrease;
max_line_search_step_expansion =
options.max_line_search_step_expansion;
2013-05-22 09:13:27 -07:00
inner_iteration_tolerance = options.inner_iteration_tolerance;
is_silent = (options.logging_type == SILENT);
is_constrained = false;
callbacks = options.callbacks;
2012-04-30 23:09:08 -07:00
}
int max_num_iterations;
2012-06-11 14:21:42 -07:00
double max_solver_time_in_seconds;
2012-11-26 12:55:58 -08:00
int num_threads;
2012-05-29 17:40:17 -07:00
// Number of times the linear solver should be retried in case of
// numerical failure. The retries are done by exponentially scaling up
// mu at each retry. This leads to stronger and stronger
// regularization making the linear least squares problem better
// conditioned at each retry.
int max_step_solver_retries;
2012-04-30 23:09:08 -07:00
double gradient_tolerance;
double parameter_tolerance;
double function_tolerance;
double min_relative_decrease;
double eta;
bool jacobi_scaling;
2012-08-08 10:38:31 -07:00
bool use_nonmonotonic_steps;
int max_consecutive_nonmonotonic_steps;
2014-12-17 07:35:09 -08:00
std::vector<int> trust_region_minimizer_iterations_to_dump;
DumpFormatType trust_region_problem_dump_format_type;
2015-01-07 15:10:46 -08:00
std::string trust_region_problem_dump_directory;
2012-05-29 17:40:17 -07:00
int max_num_consecutive_invalid_steps;
double min_trust_region_radius;
2012-11-26 12:55:58 -08:00
LineSearchDirectionType line_search_direction_type;
LineSearchType line_search_type;
NonlinearConjugateGradientType nonlinear_conjugate_gradient_type;
2012-11-29 10:33:19 -08:00
int max_lbfgs_rank;
bool use_approximate_eigenvalue_bfgs_scaling;
LineSearchInterpolationType line_search_interpolation_type;
double min_line_search_step_size;
double line_search_sufficient_function_decrease;
double max_line_search_step_contraction;
double min_line_search_step_contraction;
int max_num_line_search_step_size_iterations;
int max_num_line_search_direction_restarts;
double line_search_sufficient_curvature_decrease;
double max_line_search_step_expansion;
double inner_iteration_tolerance;
// If true, then all logging is disabled.
bool is_silent;
2012-04-30 23:09:08 -07:00
// Use a bounds constrained optimization algorithm.
bool is_constrained;
2012-04-30 23:09:08 -07:00
// List of callbacks that are executed by the Minimizer at the end
// of each iteration.
//
2012-05-29 17:40:17 -07:00
// The Options struct does not own these pointers.
2014-12-17 07:35:09 -08:00
std::vector<IterationCallback*> callbacks;
2012-05-29 17:40:17 -07:00
// Object responsible for evaluating the cost, residuals and
// Jacobian matrix.
shared_ptr<Evaluator> evaluator;
2012-05-29 17:40:17 -07:00
// Object responsible for actually computing the trust region
// step, and sizing the trust region radius.
shared_ptr<TrustRegionStrategy> trust_region_strategy;
2012-05-29 17:40:17 -07:00
// Object holding the Jacobian matrix. It is assumed that the
// sparsity structure of the matrix has already been initialized
// and will remain constant for the life time of the
// optimization.
shared_ptr<SparseMatrix> jacobian;
shared_ptr<CoordinateDescentMinimizer> inner_iteration_minimizer;
2012-04-30 23:09:08 -07:00
};
static Minimizer* Create(MinimizerType minimizer_type);
2014-05-01 07:54:12 -07:00
static bool RunCallbacks(const Options& options,
2012-11-30 12:32:43 -08:00
const IterationSummary& iteration_summary,
Solver::Summary* summary);
2012-05-29 17:40:17 -07:00
2012-11-30 12:32:43 -08:00
virtual ~Minimizer();
2012-05-29 17:40:17 -07:00
// Note: The minimizer is expected to update the state of the
// parameters array every iteration. This is required for the
// StateUpdatingCallback to work.
2012-04-30 23:09:08 -07:00
virtual void Minimize(const Options& options,
2012-05-29 17:40:17 -07:00
double* parameters,
2012-04-30 23:09:08 -07:00
Solver::Summary* summary) = 0;
};
} // namespace internal
} // namespace ceres
#endif // CERES_INTERNAL_MINIMIZER_H_