34 typedef boost::shared_ptr<ConcurrentIncrementalFilter> shared_ptr;
42 size_t variablesReeliminated;
43 size_t variablesRelinearized;
54 Result() : iterations(0), nonlinearVariables(0), linearVariables(0), error(0) {};
58 size_t getNonlinearVariables()
const {
return nonlinearVariables; }
59 size_t getLinearVariables()
const {
return linearVariables; }
60 double getError()
const {
return error; }
70 virtual void print(
const std::string& s =
"Concurrent Incremental Filter:\n",
const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const;
77 return isam2_.getFactorsUnsafe();
87 return isam2_.getLinearizationPoint();
92 return isam2_.getDelta();
99 return isam2_.calculateEstimate();
107 template<
class VALUE>
109 return isam2_.calculateEstimate<VALUE>(key);
126 const boost::optional<
FastList<Key> >& keysToMove = boost::none,
127 const boost::optional< FactorIndices >& removeFactorIndices = boost::none);
133 virtual void presync();
165 virtual void postsync();
183 static void RecursiveMarkAffectedKeys(
const Key& key,
const ISAM2Clique::shared_ptr& clique, std::set<Key>& additionalKeys);
Incremental update functionality (ISAM2) for BayesTree, with fluid relinearization.
NonlinearFactorGraph smootherFactors_
A temporary holding place for the set of full nonlinear factors being sent to the smoother.
Definition: ConcurrentIncrementalFilter.h:177
A non-templated config holding any types of Manifold-group elements.
Definition: Values.h:70
ConcurrentIncrementalFilter(const ISAM2Params ¶meters=ISAM2Params())
Default constructor.
Definition: ConcurrentIncrementalFilter.h:64
size_t linearVariables
The number of variables that must keep a constant linearization point.
Definition: ConcurrentIncrementalFilter.h:41
The interface for the 'Filter' portion of the Concurrent Filtering and Smoother architecture.
Definition: ConcurrentFilteringAndSmoothing.h:39
const ISAM2 & getISAM2() const
Access the current linearization point.
Definition: ConcurrentIncrementalFilter.h:81
void print(const Matrix &A, const string &s, ostream &stream)
print without optional string, must specify cout yourself
Definition: Matrix.cpp:141
ISAM2 isam2_
The iSAM2 inference engine.
Definition: ConcurrentIncrementalFilter.h:169
FactorIndices newFactorsIndices
The indices of the newly-added factors, in 1-to-1 correspondence with the factors passed as newFactor...
Definition: ConcurrentIncrementalFilter.h:49
Result()
Constructor.
Definition: ConcurrentIncrementalFilter.h:54
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:57
VALUE calculateEstimate(Key key) const
Compute the current best estimate of a single variable.
Definition: ConcurrentIncrementalFilter.h:108
double error
The final factor graph error.
Definition: ConcurrentIncrementalFilter.h:51
Template to create a binary predicate.
Definition: Testable.h:110
NonlinearFactorGraph smootherShortcut_
A set of conditional factors from the old separator to the current separator (recursively calculated ...
Definition: ConcurrentIncrementalFilter.h:174
ConcurrentIncrementalFilter::Result ConcurrentIncrementalFilterResult
Typedef for Matlab wrapping.
Definition: ConcurrentIncrementalFilter.h:199
A helper that implements the traits interface for GTSAM types.
Definition: Testable.h:150
Definition: ISAM2Params.h:135
size_t nonlinearVariables
The number of variables that can be relinearized.
Definition: ConcurrentIncrementalFilter.h:40
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
An iSAM2-based Batch Filter that implements the Concurrent Filtering and Smoother interface.
Definition: ConcurrentIncrementalFilter.h:30
Definition: FastList.h:38
Values smootherValues_
A temporary holding place for the linearization points of all keys being sent to the smoother.
Definition: ConcurrentIncrementalFilter.h:178
Definition: ISAM2-impl.h:25
This class represents a collection of vector-valued variables associated each with a unique integer i...
Definition: VectorValues.h:73
ConcurrentFilter Base
typedef for base class
Definition: ConcurrentIncrementalFilter.h:35
A manifold defines a space in which there is a notion of a linear tangent space that can be centered ...
Definition: concepts.h:30
size_t iterations
The number of optimizer iterations performed.
Definition: ConcurrentIncrementalFilter.h:39
A non-linear factor graph is a graph of non-Gaussian, i.e.
Definition: NonlinearFactorGraph.h:77
Meta information returned about the update.
Definition: ConcurrentIncrementalFilter.h:38
const Values & getLinearizationPoint() const
Access the current linearization point.
Definition: ConcurrentIncrementalFilter.h:86
Base classes for the 'filter' and 'smoother' portion of the Concurrent Filtering and Smoothing archit...
FastVector< FactorIndex > FactorIndices
Define collection types:
Definition: Factor.h:32
virtual ~ConcurrentIncrementalFilter()
Default destructor.
Definition: ConcurrentIncrementalFilter.h:67
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
const NonlinearFactorGraph & getFactors() const
Access the current set of factors.
Definition: ConcurrentIncrementalFilter.h:76
Values calculateEstimate() const
Compute the current best estimate of all variables and return a full Values structure.
Definition: ConcurrentIncrementalFilter.h:98
size_t getIterations() const
Getter methods.
Definition: ConcurrentIncrementalFilter.h:57
FactorIndices currentSmootherSummarizationSlots_
The slots in factor graph that correspond to the current smoother summarization on the current separa...
Definition: ConcurrentIncrementalFilter.h:173
const VectorValues & getDelta() const
Access the current set of deltas to the linearization point.
Definition: ConcurrentIncrementalFilter.h:91
NonlinearFactorGraph previousSmootherSummarization_
The smoother summarization on the old separator sent by the smoother during the last synchronization.
Definition: ConcurrentIncrementalFilter.h:172