GTSAM  4.0.2
C++ library for smoothing and mapping (SAM)
PCGSolver.h
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
12 /*
13  * @file PCGSolver.h
14  * @brief Preconditioned Conjugate Gradient Solver for linear systems
15  * @date Jan 31, 2012
16  * @author Yong-Dian Jian
17  * @author Sungtae An
18  */
19 
20 #pragma once
21 
23 #include <string>
24 
25 namespace gtsam {
26 
27 class GaussianFactorGraph;
28 class KeyInfo;
29 class Preconditioner;
30 class VectorValues;
31 struct PreconditionerParameters;
32 
36 struct GTSAM_EXPORT PCGSolverParameters: public ConjugateGradientParameters {
37 public:
39  typedef std::shared_ptr<PCGSolverParameters> shared_ptr;
40 
42  }
43 
44  void print(std::ostream &os) const override;
45 
46  /* interface to preconditioner parameters */
47  inline const PreconditionerParameters& preconditioner() const {
48  return *preconditioner_;
49  }
50 
51  // needed for python wrapper
52  void print(const std::string &s) const;
53 
54  std::shared_ptr<PreconditionerParameters> preconditioner_;
55 
56  void setPreconditionerParams(const std::shared_ptr<PreconditionerParameters> preconditioner);
57 };
58 
62 class GTSAM_EXPORT PCGSolver: public IterativeSolver {
63 public:
64  typedef IterativeSolver Base;
65  typedef std::shared_ptr<PCGSolver> shared_ptr;
66 
67 protected:
68 
69  PCGSolverParameters parameters_;
70  std::shared_ptr<Preconditioner> preconditioner_;
71 
72 public:
73  /* Interface to initialize a solver without a problem */
75  ~PCGSolver() override {
76  }
77 
78  using IterativeSolver::optimize;
79 
81  const KeyInfo &keyInfo, const std::map<Key, Vector> &lambda,
82  const VectorValues &initial) override;
83 
84 };
85 
89 class GTSAM_EXPORT GaussianFactorGraphSystem {
90 public:
91 
93  const Preconditioner &preconditioner, const KeyInfo &info,
94  const std::map<Key, Vector> &lambda);
95 
96  const GaussianFactorGraph &gfg_;
97  const Preconditioner &preconditioner_;
98  const KeyInfo &keyInfo_;
99  const std::map<Key, Vector> &lambda_;
100 
101  void residual(const Vector &x, Vector &r) const;
102  void multiply(const Vector &x, Vector& y) const;
103  void leftPrecondition(const Vector &x, Vector &y) const;
104  void rightPrecondition(const Vector &x, Vector &y) const;
105  void scal(const double alpha, Vector &x) const;
106  double dot(const Vector &x, const Vector &y) const;
107  void axpy(const double alpha, const Vector &x, Vector &y) const;
108 
109  void getb(Vector &b) const;
110 };
111 
114 
116 VectorValues buildVectorValues(const Vector &v, const Ordering &ordering,
117  const std::map<Key, size_t> & dimensions);
118 
120 VectorValues buildVectorValues(const Vector &v, const KeyInfo &keyInfo);
121 
123 
124 }
125 
Definition: IterativeSolver.h:85
Definition: PCGSolver.h:36
double dot(const V1 &a, const V2 &b)
Definition: Vector.h:195
Definition: Preconditioner.h:24
Definition: Ordering.h:37
Definition: VectorValues.h:74
Implementation of Conjugate Gradient solver for a linear system.
Definition: PCGSolver.h:62
Definition: ConjugateGradientSolver.h:29
GTSAM_EXPORT Point3 optimize(const NonlinearFactorGraph &graph, const Values &values, Key landmarkKey)
VectorValues buildVectorValues(const Vector &v, const Ordering &ordering, const std::map< Key, size_t > &dimensions)
Create VectorValues from a Vector.
GTSAM_EXPORT void print(const Matrix &A, const std::string &s, std::ostream &stream)
Definition: IterativeSolver.h:125
Definition: Preconditioner.h:64
Definition: chartTesting.h:28
Definition: IterativeSolver.h:43
Definition: PCGSolver.h:89
GTSAM_EXPORT void axpy(double alpha, const Errors &x, Errors &y)
BLAS level 2 style AXPY, y := alpha*x + y
Definition: GaussianFactorGraph.h:73