Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions gtsam_unstable/nonlinear/IncrementalFixedLagSmoother.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ FixedLagSmoother::Result IncrementalFixedLagSmoother::update(
std::set<Key> additionalKeys;
for(Key key: marginalizableKeys) {
ISAM2Clique::shared_ptr clique = isam_[key];
// Mark all frontal keys of the current clique.
additionalKeys.insert(clique->conditional()->frontals().begin(),
clique->conditional()->frontals().end());
// Recursively mark all of the children key that contain the marginal key.
for(const ISAM2Clique::shared_ptr& child: clique->children) {
recursiveMarkAffectedKeys(key, child, additionalKeys);
}
Expand Down