-
Notifications
You must be signed in to change notification settings - Fork 780
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
add definition of constraints #1789
base: develop
Are you sure you want to change the base?
Conversation
CI fails. Talking about CI, try to save on CO2 by not pushing every commit, but only after you think CI will pass. |
It seems pretty weird that only the Windows CI fails. Unfortunately I do not have a Windows environment to test this on. I was trying to tweak with different changes to see which causes the Windows CI to fail. |
@yetongatech error is due to a argument type not being recognized:
Try figuring out what type you want and somehow being explicit? I just looked at the error above but maybe you can dig deeper. |
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.
Cool ! Some comments/questions.
Still need to pass CI
I think if you rebase on current |
Seems still not working |
@yetongatech you might have to investigate a bit to get past windows issue. None of us have the answers exactly :-) |
@yetongumich , checks passed, will you address comments (and resolve them when addressed) ? |
First PR in the 4 PRs to implement nonlinear constrained optimization in GTSAM.
This PR
NonlinearEqualityConstraint
andNonlinearInequalityConstraint
inheriting from NoiseModelFactor to represent constraints.NonlinearEquality
to inherit fromNonlinearEqualityConstraint
, andBoundingConstraint
to inherit fromNonlinearInequalityConstraint
.