forked from Project-OSRM/osrm-backend
-
Notifications
You must be signed in to change notification settings - Fork 7
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
feat: implement type to record internal solution #205
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* | ||
package solutionformat defines internal foramt for recording single solution result. | ||
It isolates internal calculation logic and final restful response: | ||
- Internal algorithm will calculate result in this format. | ||
- In the end, oasis will use this format to generate restful response. | ||
*/ | ||
package solutionformat | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package solutionformat | ||
|
||
// Solution contains summary and selected charge stations | ||
type Solution struct { | ||
Distance float64 | ||
Duration float64 | ||
RemainingRage float64 | ||
Weight float64 | ||
ChargeStations []*ChargeStation | ||
} | ||
|
||
// ChargeStation contains all information related with specific charge station | ||
type ChargeStation struct { | ||
Location Location | ||
StationID string | ||
ArrivalEnergy float64 | ||
WaitTime float64 | ||
ChargeTime float64 | ||
ChargeRange float64 | ||
} | ||
|
||
// Location defines the geo location of a station | ||
type Location struct { | ||
Lat float64 | ||
Lon float64 | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 feel
solution
will be better, even it causessolution.Solution
. How's your idea?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 like shorter name.
My original thinking is,
solution
is better contains not onlytype definition
but alsosolution logic
, which is how those type is constructed, such as the calculation logic.Currently, I put constructing logic inside
stationgraph
, in the end of its calculation it will generate result insolutionformat
, which could be dumped to external format. That's what I try to limit scope withsolutionformat
orsolutiontype
But as a reviewer, I think
solution
is more clear thansolutionformat
orsolutiontype
.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.
The following comment I think is worth to record: Avoid to use package name as variable name, otherwise you will get strange errors.
After I rename package name from
solutionformat
tosolution
, there are some existing code use this package create a variablesolution
there. (this code is not in this pull, they exists in the pull request #203)I met following error:
I think compiler confuse on whether
solution
is a package name or a variable name. After I rename variablesolution
tosol
, problem solved. But it took me a while to figure it out. I original thought it is related with package renaming.