Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/main' into kmt_2echelon4Diss
Browse files Browse the repository at this point in the history
  • Loading branch information
kt86 committed Oct 10, 2024
2 parents 041eeb5 + ce37c8e commit e042693
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.matsim</groupId>
<artifactId>matsim-all</artifactId>
<version>2025.0-2024w39</version>
<version>2025.0-2024w41</version>
<!-- <version>2025.0-PR3390</version>-->
<!-- <version>2025.0-2024w36</version>-->
<!-- <version>2025.0-SNAPSHOT</version>-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public static Carrier solveVrpWithJsprit(Carrier carrier, Scenario scenario) {

CarrierPlan plan = MatsimJspritFactory.createPlan(carrier, solution);
NetworkRouter.routePlan(plan, netbasedTransportCosts);
carrier.addPlan(plan);
carrier.setSelectedPlan(plan);
return carrier;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ protected void scheduleResource() {
CarrierPlan plan = new CarrierPlan(carrier, unifyTourIds(scheduledPlans));
plan.setScore(CarrierSchedulerUtils.sumUpScore(scheduledPlans));
plan.setJspritScore(CarrierSchedulerUtils.sumUpJspritScore(scheduledPlans));
carrier.addPlan(plan);
carrier.setSelectedPlan(plan);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ protected void scheduleResource() {
}
CarrierPlan plan = new CarrierPlan(carrier, scheduledTours);
plan.setScore(CarrierSchedulerUtils.sumUpScore(scheduledPlans));
carrier.addPlan(plan);
carrier.setSelectedPlan(plan);
}

Expand Down

0 comments on commit e042693

Please sign in to comment.