-
Notifications
You must be signed in to change notification settings - Fork 606
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
fix bug 329 part 1 for services #332
Open
jie31best
wants to merge
9
commits into
graphhopper:master
Choose a base branch
from
jie31best:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
fix bug 280
…nce-constraint fix deliverShipment insertion in max distance constraint
Hello
I have a problem, try to make the modifications in the files, and in my
route solution, previously left 30 unassigned service grow to 118
unassigned service, thats a problem in the final solution, returning it to
the previous code back to the amount of services Unassigned.
I will try to revise the modifications to identify what may have caused
this situation
regards
2017-04-13 4:42 GMT-05:00 jie31best <[email protected]>:
… handle properly the case when 1) the vehicle has a break; 2) the route end
time is after the break time window; and 3) the break cannot be inserted
into the route.
for services.
------------------------------
You can view, comment on, or merge this pull request online at:
#332
Commit Summary
- Merge pull request #1 from jie31best/bugfix/bug-280
- Merge pull request #2 from jie31best/bugfix/
delivershipment-max-distance-constraint
- Merge the changes from upstream/master into local master branch.
- fix #329 part 1:
- Merge commit '562be55ae6fc5820449561cb17c3a310ea2c76a5'
- Merge branch 'bugfix/bug-329'
File Changes
- *M* jsprit-core/src/main/java/com/graphhopper/jsprit/core/
algorithm/AlgorithmUtil.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-0> (3)
- *M* jsprit-core/src/main/java/com/graphhopper/jsprit/core/
algorithm/recreate/JobInsertionCostsCalculatorBuilder.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-1> (4)
- *M* jsprit-core/src/main/java/com/graphhopper/jsprit/core/
algorithm/recreate/ServiceInsertionCalculator.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-2> (95)
- *M* jsprit-core/src/main/java/com/graphhopper/jsprit/core/
algorithm/state/InternalStates.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-3> (3)
- *A* jsprit-core/src/main/java/com/graphhopper/jsprit/core/
algorithm/state/UpdateVehicleDependentFutureWaitingTimes.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-4> (68)
- *A* jsprit-core/src/main/java/com/graphhopper/jsprit/core/
algorithm/state/UpdateVehicleDependentTimes.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-5> (109)
- *M* jsprit-core/src/test/java/com/graphhopper/jsprit/core/algorithm/
IgnoreBreakTimeWindowTest.java
<https://github.com/graphhopper/jsprit/pull/332/files#diff-6> (63)
Patch Links:
- https://github.com/graphhopper/jsprit/pull/332.patch
- https://github.com/graphhopper/jsprit/pull/332.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#332>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHZ6AQsGQTdXodi0Q-lvLKIU0YsYqjNJks5rve4DgaJpZM4M8en6>
.
|
…ug-329 # Conflicts: # jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/ServiceInsertionCalculator.java
updated for shipments |
Hi @DFuster , is it possible that you can share with me some more information or some code snippet? with the current information, it is difficult for me to judge what went wrong with your case. Thank you. Best regards, |
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
fix bug #329 part 1 for services
handle properly the case when 1) the vehicle has a break; 2) the route end time is after the break time window; and 3) the break cannot be inserted into the route.
for services.