-
Notifications
You must be signed in to change notification settings - Fork 1
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
New branch after rebasing for evaluator module, based on PR #43 #52
Conversation
Code is pretty much identical to this pull request here: #43, rebasing gave me a lot of grief though so I created this new branch. |
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.
Reviewed.
path_2024.py
Outdated
result, time_condition = mission_time_condition.MissionTimeCondition.create( | ||
start_time, MAXIMUM_FLIGHT_TIME | ||
) | ||
|
||
if not result: | ||
print("Error: Mission time condition") | ||
return -1 | ||
|
||
return_to_launch_evaluator = condition_evaluator.ConditionEvaluator([time_condition]) | ||
|
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.
Sorry for the confusion, path_2024.py
runs task 2 code. Since this is being tested I don't want to make any changes to it. Can we revert the changes to this file and bring back check_stop_condition.py
.
Also, we want to incorporate this module into path_2024_task_1.py
instead. Can you put the mission_time_condition there.
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.
LGTM
No description provided.