Skip to content

Commit

Permalink
call project RoadPricingModule
Browse files Browse the repository at this point in the history
  • Loading branch information
simei94 committed Nov 25, 2024
1 parent c951c65 commit cb28eeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/matsim/run/RunMexicoCityScenario.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import org.matsim.prepare.opt.RunCountOptimization;
import org.matsim.prepare.opt.SelectPlansFromIndex;
import org.matsim.prepare.population.*;
import org.matsim.run.MexicoCityRoadPricing.MexicoCityAbsoluteFareRoadPricingModule;
import org.matsim.run.MexicoCityRoadPricing.MexicoCityIncomeDependentRoadPricingModule;
import org.matsim.simwrapper.SimWrapperConfigGroup;
import org.matsim.simwrapper.SimWrapperModule;
Expand Down Expand Up @@ -311,7 +312,7 @@ public void install() {
install(new MexicoCityIncomeDependentRoadPricingModule());
log.warn("Running road pricing scenario with a toll value of {}. Make sure, that this is a relative value.", RoadPricingOptions.toll);
} else {
install(new RoadPricingModule());
install(new MexicoCityAbsoluteFareRoadPricingModule());
log.warn("Running road pricing scenario with a toll value of {}. Make sure, that this is an absolute value.", RoadPricingOptions.toll);
}
}
Expand Down

0 comments on commit cb28eeb

Please sign in to comment.