-
Notifications
You must be signed in to change notification settings - Fork 80
Add speed information to all chromosomes of the genetic algorithm #117
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
Conversation
& adapt unit tests
| :param src: Source waypoint as (lat, lon, v) triple | ||
| :type src: tuple[float, float, float] | ||
| :param dst: Destination waypoint as (lat, lon, v) triple | ||
| :type dst: tuple[float, float, float] |
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.
Could you also update the type hints of the method arguments?
Instead of src: tuple, dst: tuple write src: tuple[float, float, float], dst: tuple[float, float, float]
| :param src: Source waypoint as (lat, lon, speed) triple | ||
| :type src: tuple[float, float, float] | ||
| :param dst: Destination waypoint as (lat, lon, speed) triple | ||
| :type dst: tuple[float, float, float] |
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.
Could you also add type hints of the method arguments?
Instead of src, dst write src: tuple[float, float, float], dst: tuple[float, float, float]
Related Issue / Discussion:
Fixes Issues #116, 52North/WRT-Issues#1
Changes:
RouteParamsFurther Details:
Summary:
See Issue #116.
Dependencies:
pytest-plt
PR Checklist:
In the context of this PR, I: