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

Commit

Permalink
Merge pull request #310 from matsim-vsp/dependabot/maven/project.pare…
Browse files Browse the repository at this point in the history
…nt.version-2025.0-2024w40

Bump project.parent.version from 2025.0-2024w39 to 2025.0-2024w40
  • Loading branch information
kt86 authored Sep 30, 2024
2 parents ac6975b + 1f08596 commit 2730985
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-2024w40</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 @@ -81,6 +81,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 @@ -126,6 +126,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 2730985

Please sign in to comment.