-
Notifications
You must be signed in to change notification settings - Fork 38
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
Implement NamedTuple and the CentroidalDynamics classes #642
Conversation
a555a30
to
ad12b77
Compare
ad12b77
to
5f16972
Compare
5f16972
to
4752b75
Compare
6805229
to
8f203bd
Compare
7155966
to
adef889
Compare
Meta comment. Is |
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.
Some super preliminary comments. I haven't gone through the code yet
Deal! |
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.
Some additional comments about NamedTuple
(that I really like, btw)
b97cbd9
to
ef0bfef
Compare
I moved named_tuple in GenericContainer |
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.
I don't have other comments on the remaining part of the PR
...uousDynamicalSystem/include/BipedalLocomotion/ContinuousDynamicalSystem/CentroidalDynamics.h
Outdated
Show resolved
Hide resolved
0086ffd
to
1af797e
Compare
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.
Just some documentation typos
src/GenericContainer/include/BipedalLocomotion/GenericContainer/NamedTuple.h
Outdated
Show resolved
Hide resolved
src/GenericContainer/include/BipedalLocomotion/GenericContainer/NamedTuple.h
Outdated
Show resolved
Hide resolved
src/GenericContainer/include/BipedalLocomotion/GenericContainer/NamedTuple.h
Outdated
Show resolved
Hide resolved
src/GenericContainer/include/BipedalLocomotion/GenericContainer/NamedTuple.h
Outdated
Show resolved
Hide resolved
src/GenericContainer/include/BipedalLocomotion/GenericContainer/NamedTuple.h
Outdated
Show resolved
Hide resolved
src/GenericContainer/include/BipedalLocomotion/GenericContainer/NamedTuple.h
Outdated
Show resolved
Hide resolved
The following classes have been modified: - DynamicalSystem - FixedBaseDynamics - LinearTimeInvariantSystem - FloatingBaseSystemKinematics - ForwardEuler - FirstOrderSmoother
…only if FRAMEWORK_COMPILE_ContinuousDynamicalSystem
…ContinuousDynamicalSystem
d8ec829
to
1981bde
Compare
I applied your changes and I rebased the code. I will wait for the CI and I will merge it |
This PR implements the
NamedTuple
class in the System component. I took the implementation from here: https://github.com/GiulioRomualdi/named_tupleThe following classes have been modified to be compliant with
named_tuple
Moreover, this PR implements the
CentroidalDynamics
class