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

Commit

Permalink
update based on changes in MATSim-libs
Browse files Browse the repository at this point in the history
  • Loading branch information
kt86 committed Nov 11, 2024
1 parent fe7bf4b commit 90831d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void install() {
private static void runCarrierAnalysis(String outputPath, Config config) {
RunFreightAnalysisEventBased freightAnalysis = new RunFreightAnalysisEventBased(outputPath +"/", outputPath +"/Analysis/", config.global().getCoordinateSystem());
try {
freightAnalysis.runAnalysis();
freightAnalysis.runCompleteAnalysis();
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ private static RoadPricingSchemeUsingTollFactor setUpRoadpricing(Scenario scenar
private static void runCarrierAnalysis(String outputPath, Config config) {
RunFreightAnalysisEventBased freightAnalysis = new RunFreightAnalysisEventBased(outputPath +"/", outputPath +"/Analysis/", config.global().getCoordinateSystem());
try {
freightAnalysis.runAnalysis();
freightAnalysis.runCompleteAnalysis();
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 90831d3

Please sign in to comment.