-
Notifications
You must be signed in to change notification settings - Fork 19
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 checks in SemiImplicitEuler #17
Comments
For the moment, IntegratorSemiImplEuler only works for systems whose state dimension is a pair integer (we make the hypothesis that x = [q,v] where dim(q)=dim(v), which is quite restrictive ...). This explains why this test fails. |
maybe we can do the following for now ? #21 it is an assert. so it will not trigger when compiled in RELEASE mode or with the NDEBUG flag.
which i think is understandable ? what do you think @quentinll |
This looks fine to me @fabinsch |
check if it is second-order dynamics @quentinll
for example this test here fails:
while for
create_linear_ode(4, 2)
it passes. see full test function here: https://github.com/Simple-Robotics/proxddp/blob/main/tests/python/test_integrators.pyThe text was updated successfully, but these errors were encountered: