-
Notifications
You must be signed in to change notification settings - Fork 767
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hybrid Incremental #1271
Hybrid Incremental #1271
Conversation
// } | ||
// Test for figuring out the optimal ordering to ensure we get | ||
// a discrete graph after elimination. | ||
TEST(HybridGaussianISAM, NonTrivial) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this one meant to be commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I am working on getting this to pass. I might need to open a separate PR though since it has some non-trivial changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM except one commented out section
Tagging @keevindoherty to keep him in the loop. :) |
This PR adds tests for running HybridGaussianISAM as well as lots of fixes and improvements to the pruning methodology.
I also added an optional ordering parameter to the
HybridGaussianISAM::update
method so we can pass in custom orderings as needed.