Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 1 | // 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 Agarwal | 4997cbc | 2012-07-02 12:44:34 -0700 | [diff] [blame] | 34 | #include <string> |
| 35 | #include <vector> |
| 36 | #include "ceres/internal/port.h" |
Sameer Agarwal | 2c94eed | 2012-10-01 16:34:37 -0700 | [diff] [blame] | 37 | #include "ceres/ordered_groups.h" |
Sameer Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 38 | #include "ceres/problem_impl.h" |
Sameer Agarwal | ba8d967 | 2012-10-02 00:48:57 -0700 | [diff] [blame] | 39 | #include "ceres/solver.h" |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 40 | |
| 41 | namespace ceres { |
| 42 | namespace internal { |
| 43 | |
Sameer Agarwal | ba8d967 | 2012-10-02 00:48:57 -0700 | [diff] [blame] | 44 | class CoordinateDescentMinimizer; |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 45 | class Evaluator; |
| 46 | class LinearSolver; |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 47 | class Program; |
| 48 | |
| 49 | class 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 Mierle | 6196cba | 2012-06-18 11:03:40 -0700 | [diff] [blame] | 54 | ProblemImpl* problem_impl, |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 55 | Solver::Summary* summary); |
| 56 | |
Sameer Agarwal | f4d0164 | 2012-11-26 12:55:58 -0800 | [diff] [blame] | 57 | 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 Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 65 | // 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 Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 69 | // |
Markus Moll | 8de78db | 2012-07-14 15:49:11 +0200 | [diff] [blame] | 70 | // 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 Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 72 | static Program* CreateReducedProgram(Solver::Options* options, |
| 73 | ProblemImpl* problem_impl, |
Markus Moll | 8de78db | 2012-07-14 15:49:11 +0200 | [diff] [blame] | 74 | double* fixed_cost, |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 75 | 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 Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 85 | // 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 Agarwal | 2c94eed | 2012-10-01 16:34:37 -0700 | [diff] [blame] | 89 | const ParameterBlockOrdering* ordering, |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 90 | Program* program, |
| 91 | string* error); |
| 92 | |
Sameer Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 93 | |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 94 | // Reorder the residuals for program, if necessary, so that the |
Sameer Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 95 | // residuals involving e block (i.e., the first num_eliminate_block |
| 96 | // parameter blocks) occur together. This is a necessary condition |
Sameer Agarwal | ba8d967 | 2012-10-02 00:48:57 -0700 | [diff] [blame] | 97 | // for the Schur eliminator. |
Sameer Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 98 | static bool LexicographicallyOrderResidualBlocks( |
| 99 | const int num_eliminate_blocks, |
| 100 | Program* program, |
| 101 | string* error); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 102 | |
| 103 | // Create the appropriate evaluator for the transformed program. |
Sameer Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 104 | static Evaluator* CreateEvaluator( |
| 105 | const Solver::Options& options, |
| 106 | const ProblemImpl::ParameterMap& parameter_map, |
| 107 | Program* program, |
| 108 | string* error); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 109 | |
Sameer Agarwal | f4d0164 | 2012-11-26 12:55:58 -0800 | [diff] [blame] | 110 | // 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 Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 127 | |
| 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 Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 131 | // 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 Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 134 | static bool RemoveFixedBlocksFromProgram(Program* program, |
Sameer Agarwal | 2c94eed | 2012-10-01 16:34:37 -0700 | [diff] [blame] | 135 | ParameterBlockOrdering* ordering, |
Markus Moll | 8de78db | 2012-07-14 15:49:11 +0200 | [diff] [blame] | 136 | double* fixed_cost, |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 137 | string* error); |
Sameer Agarwal | 65625f7 | 2012-09-17 12:06:57 -0700 | [diff] [blame] | 138 | |
| 139 | static bool IsOrderingValid(const Solver::Options& options, |
| 140 | const ProblemImpl* problem_impl, |
| 141 | string* error); |
Sameer Agarwal | 9123e2f | 2012-09-18 21:49:06 -0700 | [diff] [blame] | 142 | |
| 143 | static bool IsParameterBlockSetIndependent( |
Sameer Agarwal | ba8d967 | 2012-10-02 00:48:57 -0700 | [diff] [blame] | 144 | const set<double*>& parameter_block_ptrs, |
| 145 | const vector<ResidualBlock*>& residual_blocks); |
Sameer Agarwal | 67a107b | 2012-10-08 14:35:41 -0700 | [diff] [blame] | 146 | |
| 147 | static CoordinateDescentMinimizer* CreateInnerIterationMinimizer( |
| 148 | const Solver::Options& options, |
| 149 | const Program& program, |
| 150 | const ProblemImpl::ParameterMap& parameter_map, |
Sameer Agarwal | 977be7c | 2013-01-26 16:01:54 -0800 | [diff] [blame] | 151 | Solver::Summary* summary); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | } // namespace internal |
| 155 | } // namespace ceres |
| 156 | |
| 157 | #endif // CERES_INTERNAL_SOLVER_IMPL_H_ |