21 #include <gtsam/linear/GaussianISAM.h> 60 reorderInterval_(reorderInterval), reorderCounter_(0), eliminationFunction_(eliminationFunction) {}
70 Matrix marginalCovariance(
Key key)
const;
88 void print(
const std::string& s=
"",
const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const;
91 void printStats()
const;
94 void saveGraph(
const std::string& s,
const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const;
104 void reorder_relinearize();
Values linPoint_
The current linearization point.
Definition: NonlinearISAM.h:34
A non-templated config holding any types of Manifold-group elements.
Definition: Values.h:70
const GaussianISAM & bayesTree() const
access the underlying bayes tree
Definition: NonlinearISAM.h:75
const Values & getLinearizationPoint() const
Return the current linearization point.
Definition: NonlinearISAM.h:78
void print(const Matrix &A, const string &s, ostream &stream)
print without optional string, must specify cout yourself
Definition: Matrix.cpp:141
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:57
Wrapper class to manage ISAM in a nonlinear context.
Definition: NonlinearISAM.h:27
int reorderInterval() const
get counters
Definition: NonlinearISAM.h:84
const NonlinearFactorGraph & getFactorsUnsafe() const
get underlying nonlinear graph
Definition: NonlinearISAM.h:81
boost::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:33
Factor Graph Constsiting of non-linear factors.
NonlinearISAM(int reorderInterval=1, const GaussianFactorGraph::Eliminate &eliminationFunction=GaussianFactorGraph::EliminationTraitsType::DefaultEliminate)
Periodically reorder and relinearize.
Definition: NonlinearISAM.h:58
Definition: GaussianISAM.h:26
int reorderInterval_
The reordering interval and counter.
Definition: NonlinearISAM.h:40
A non-linear factor graph is a graph of non-Gaussian, i.e.
Definition: NonlinearFactorGraph.h:77
int reorderCounter() const
TODO: comment.
Definition: NonlinearISAM.h:85
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
NonlinearFactorGraph factors_
The original factors, used when relinearizing.
Definition: NonlinearISAM.h:37
boost::function< EliminationResult(const FactorGraphType &, const Ordering &)> Eliminate
The function type that does a single dense elimination step on a subgraph.
Definition: EliminateableFactorGraph.h:89
gtsam::GaussianISAM isam_
The internal iSAM object.
Definition: NonlinearISAM.h:31
GaussianFactorGraph::Eliminate eliminationFunction_
The elimination function.
Definition: NonlinearISAM.h:44