-
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
Convert Vessel and its test to DiscreteTraject0ry #3189
Conversation
ksp_plugin/vessel.cpp
Outdated
@@ -333,7 +339,7 @@ absl::Status Vessel::RebaseFlightPlan(Mass const& initial_mass) { | |||
void Vessel::RefreshPrediction() { | |||
// The |prognostication| is a root trajectory which is computed asynchronously |
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.
No need to say root anymore.
ksp_plugin/vessel.cpp
Outdated
/*forks=*/{psychohistory_, empty_prediction}, | ||
/*exact=*/{}); | ||
psychohistory_->DeleteFork(empty_prediction); | ||
//TODO(phl):comment |
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.
comment?
ksp_plugin/vessel.hpp
Outdated
@@ -247,16 +252,18 @@ class Vessel { | |||
std::map<PartId, not_null<std::unique_ptr<Part>>> parts_; | |||
std::set<PartId> kept_parts_; | |||
|
|||
//TODO(phl):comment |
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.
comment?
#3136.