blob: c9848fb687ddc79233341fbbb20e7dc0e1d23d0e [file] [log] [blame]
Keir Mierle8ebb0732012-04-30 23:09:08 -07001// Ceres Solver - A fast non-linear least squares minimizer
2// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
3// http://code.google.com/p/ceres-solver/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: keir@google.com (Keir Mierle)
30
31#ifndef CERES_INTERNAL_SOLVER_IMPL_H_
32#define CERES_INTERNAL_SOLVER_IMPL_H_
33
Sameer Agarwal4997cbc2012-07-02 12:44:34 -070034#include <string>
35#include <vector>
36#include "ceres/internal/port.h"
Sameer Agarwal2c94eed2012-10-01 16:34:37 -070037#include "ceres/ordered_groups.h"
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070038#include "ceres/problem_impl.h"
Sameer Agarwalba8d9672012-10-02 00:48:57 -070039#include "ceres/solver.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070040
41namespace ceres {
42namespace internal {
43
Sameer Agarwalba8d9672012-10-02 00:48:57 -070044class CoordinateDescentMinimizer;
Keir Mierle8ebb0732012-04-30 23:09:08 -070045class Evaluator;
46class LinearSolver;
Keir Mierle8ebb0732012-04-30 23:09:08 -070047class Program;
48
49class SolverImpl {
50 public:
51 // Mirrors the interface in solver.h, but exposes implementation
52 // details for testing internally.
53 static void Solve(const Solver::Options& options,
Keir Mierle6196cba2012-06-18 11:03:40 -070054 ProblemImpl* problem_impl,
Keir Mierle8ebb0732012-04-30 23:09:08 -070055 Solver::Summary* summary);
56
Sameer Agarwalf4d01642012-11-26 12:55:58 -080057 static void TrustRegionSolve(const Solver::Options& options,
58 ProblemImpl* problem_impl,
59 Solver::Summary* summary);
60
61 static void LineSearchSolve(const Solver::Options& options,
62 ProblemImpl* problem_impl,
63 Solver::Summary* summary);
64
Keir Mierle8ebb0732012-04-30 23:09:08 -070065 // Create the transformed Program, which has all the fixed blocks
66 // and residuals eliminated, and in the case of automatic schur
67 // ordering, has the E blocks first in the resulting program, with
68 // options.num_eliminate_blocks set appropriately.
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070069 //
Markus Moll8de78db2012-07-14 15:49:11 +020070 // If fixed_cost is not NULL, the residual blocks that are removed
71 // are evaluated and the sum of their cost is returned in fixed_cost.
Keir Mierle8ebb0732012-04-30 23:09:08 -070072 static Program* CreateReducedProgram(Solver::Options* options,
73 ProblemImpl* problem_impl,
Markus Moll8de78db2012-07-14 15:49:11 +020074 double* fixed_cost,
Keir Mierle8ebb0732012-04-30 23:09:08 -070075 string* error);
76
77 // Create the appropriate linear solver, taking into account any
78 // config changes decided by CreateTransformedProgram(). The
79 // selected linear solver, which may be different from what the user
80 // selected; consider the case that the remaining elimininated
81 // blocks is zero after removing fixed blocks.
82 static LinearSolver* CreateLinearSolver(Solver::Options* options,
83 string* error);
84
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070085 // Reorder the parameter blocks in program using the ordering. A
86 // return value of true indicates success and false indicates an
87 // error was encountered whose cause is logged to LOG(ERROR).
88 static bool ApplyUserOrdering(const ProblemImpl::ParameterMap& parameter_map,
Sameer Agarwal2c94eed2012-10-01 16:34:37 -070089 const ParameterBlockOrdering* ordering,
Keir Mierle8ebb0732012-04-30 23:09:08 -070090 Program* program,
91 string* error);
92
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070093
Keir Mierle8ebb0732012-04-30 23:09:08 -070094 // Reorder the residuals for program, if necessary, so that the
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070095 // residuals involving e block (i.e., the first num_eliminate_block
96 // parameter blocks) occur together. This is a necessary condition
Sameer Agarwalba8d9672012-10-02 00:48:57 -070097 // for the Schur eliminator.
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070098 static bool LexicographicallyOrderResidualBlocks(
99 const int num_eliminate_blocks,
100 Program* program,
101 string* error);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700102
103 // Create the appropriate evaluator for the transformed program.
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700104 static Evaluator* CreateEvaluator(
105 const Solver::Options& options,
106 const ProblemImpl::ParameterMap& parameter_map,
107 Program* program,
108 string* error);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700109
Sameer Agarwalf4d01642012-11-26 12:55:58 -0800110 // Run the TrustRegionMinimizer for the given evaluator and configuration.
111 static void TrustRegionMinimize(
112 const Solver::Options &options,
113 Program* program,
114 CoordinateDescentMinimizer* inner_iteration_minimizer,
115 Evaluator* evaluator,
116 LinearSolver* linear_solver,
117 double* parameters,
118 Solver::Summary* summary);
119
120 // Run the LineSearchMinimizer for the given evaluator and configuration.
121 static void LineSearchMinimize(
122 const Solver::Options &options,
123 Program* program,
124 Evaluator* evaluator,
125 double* parameters,
126 Solver::Summary* summary);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700127
128 // Remove the fixed or unused parameter blocks and residuals
129 // depending only on fixed parameters from the problem. Also updates
130 // num_eliminate_blocks, since removed parameters changes the point
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700131 // at which the eliminated blocks is valid. If fixed_cost is not
132 // NULL, the residual blocks that are removed are evaluated and the
133 // sum of their cost is returned in fixed_cost.
Keir Mierle8ebb0732012-04-30 23:09:08 -0700134 static bool RemoveFixedBlocksFromProgram(Program* program,
Sameer Agarwal2c94eed2012-10-01 16:34:37 -0700135 ParameterBlockOrdering* ordering,
Markus Moll8de78db2012-07-14 15:49:11 +0200136 double* fixed_cost,
Keir Mierle8ebb0732012-04-30 23:09:08 -0700137 string* error);
Sameer Agarwal65625f72012-09-17 12:06:57 -0700138
139 static bool IsOrderingValid(const Solver::Options& options,
140 const ProblemImpl* problem_impl,
141 string* error);
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700142
143 static bool IsParameterBlockSetIndependent(
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700144 const set<double*>& parameter_block_ptrs,
145 const vector<ResidualBlock*>& residual_blocks);
Sameer Agarwal67a107b2012-10-08 14:35:41 -0700146
147 static CoordinateDescentMinimizer* CreateInnerIterationMinimizer(
148 const Solver::Options& options,
149 const Program& program,
150 const ProblemImpl::ParameterMap& parameter_map,
Sameer Agarwal977be7c2013-01-26 16:01:54 -0800151 Solver::Summary* summary);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700152};
153
154} // namespace internal
155} // namespace ceres
156
157#endif // CERES_INTERNAL_SOLVER_IMPL_H_