-
Notifications
You must be signed in to change notification settings - Fork 69
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
Use the RKNG #1930
The head ref may contain hidden characters: "man\u0153uvre-rkng"
Use the RKNG #1930
Conversation
anomalous_segments_ = 1; | ||
return; | ||
} | ||
// TODO(egg): move this to the Manœuvre class. |
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.
Please create an issue for all these TODOs.
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.
@@ -54,6 +55,11 @@ class Ephemeris { | |||
using IntrinsicAcceleration = | |||
std::function<Vector<Acceleration, Frame>(Instant const& time)>; |
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.
Do we still need the old intrinsic acceleration somewhere? If not, mention that we need to clean up in the issue.
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.
We still use it for the non-guided path, which uses a non-RKNG RKN.
max_ephemeris_steps * parameters_.step(), | ||
trajectory_last_time + parameters_.step()), | ||
t); | ||
Prolong(t_final); |
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 am sure that I have seen most of this code elsewhere. Please factor it 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.
More TODOs for #1931.
Start fixing the debt introduced in #1930
Fix #1909.