10ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Ceres Solver - A fast non-linear least squares minimizer 20ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Copyright 2010, 2011, 2012 Google Inc. All rights reserved. 30ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// http://code.google.com/p/ceres-solver/ 40ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 50ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Redistribution and use in source and binary forms, with or without 60ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// modification, are permitted provided that the following conditions are met: 70ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 80ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// * Redistributions of source code must retain the above copyright notice, 90ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// this list of conditions and the following disclaimer. 100ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// * Redistributions in binary form must reproduce the above copyright notice, 110ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// this list of conditions and the following disclaimer in the documentation 120ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// and/or other materials provided with the distribution. 130ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// * Neither the name of Google Inc. nor the names of its contributors may be 140ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// used to endorse or promote products derived from this software without 150ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// specific prior written permission. 160ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 170ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 180ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 190ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 200ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 210ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 220ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 230ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 240ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 250ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 260ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 270ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// POSSIBILITY OF SUCH DAMAGE. 280ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 290ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Author: sameeragarwal@google.com (Sameer Agarwal) 300ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 310ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Preconditioned Conjugate Gradients based solver for positive 320ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// semidefinite linear systems. 330ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 340ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#ifndef CERES_INTERNAL_CONJUGATE_GRADIENTS_SOLVER_H_ 350ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#define CERES_INTERNAL_CONJUGATE_GRADIENTS_SOLVER_H_ 360ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 370ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include "ceres/linear_solver.h" 380ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include "ceres/internal/macros.h" 390ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 400ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongnamespace ceres { 410ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongnamespace internal { 420ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 430ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongclass LinearOperator; 440ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 450ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// This class implements the now classical Conjugate Gradients 460ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// algorithm of Hestenes & Stiefel for solving postive semidefinite 470ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// linear sytems. Optionally it can use a preconditioner also to 480ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// reduce the condition number of the linear system and improve the 490ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// convergence rate. Modern references for Conjugate Gradients are the 500ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// books by Yousef Saad and Trefethen & Bau. This implementation of CG 510ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// has been augmented with additional termination tests that are 520ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// needed for forcing early termination when used as part of an 530ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// inexact Newton solver. 540ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 550ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// For more details see the documentation for 560ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// LinearSolver::PerSolveOptions::r_tolerance and 570ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// LinearSolver::PerSolveOptions::q_tolerance in linear_solver.h. 580ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongclass ConjugateGradientsSolver : public LinearSolver { 590ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong public: 600ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong explicit ConjugateGradientsSolver(const LinearSolver::Options& options); 610ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong virtual Summary Solve(LinearOperator* A, 620ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong const double* b, 630ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong const LinearSolver::PerSolveOptions& per_solve_options, 640ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong double* x); 650ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 660ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong private: 670ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong const LinearSolver::Options options_; 680ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong CERES_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientsSolver); 690ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong}; 700ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 710ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong} // namespace internal 720ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong} // namespace ceres 730ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 740ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#endif // CERES_INTERNAL_CONJUGATE_GRADIENTS_SOLVER_H_ 75