Skip to content

Commit

Permalink
disabled dashboards during calibration
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jun 9, 2024
1 parent 8001a01 commit 5f42386
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,13 @@ protected Config prepareConfig(Config config) {

log.info("Running with flow and storage capacity: {} / {}", config.qsim().getFlowCapFactor(), config.qsim().getStorageCapFactor());

if (allCar)
if (allCar) {
config.transit().setUseTransit(false);

// Disable dashboards, for all car runs, these take too many resources
sw.defaultDashboards = SimWrapperConfigGroup.Mode.disabled;
}

// Required for all calibration strategies
for (String subpopulation : List.of("person", "commercialPersonTraffic", "commercialPersonTraffic_service", "goodsTraffic")) {
config.replanning().addStrategySettings(
Expand Down

0 comments on commit 5f42386

Please sign in to comment.