Skip to content

Commit

Permalink
move comments to satisfy check style
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorRyb committed Jan 26, 2024
1 parent 861d5b0 commit 5fe065c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/main/java/org/matsim/run/prepare/DrtCaseSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,10 @@ public static void prepareConfig(Config config, DrtCase drtCase, ShpOptions drtA
drtSpeedUpParams.fractionOfIterationsSwitchOn = 0.0;
drtSpeedUpParams.fractionOfIterationsSwitchOff = 1.0;
drtSpeedUpParams.firstSimulatedDrtIterationToReplaceInitialDrtPerformanceParams = 10000;
drtSpeedUpParams.initialWaitingTime = 345.6; // update to real world data
drtSpeedUpParams.initialInVehicleBeelineSpeed = 20/3.6; // update to real world data
// update to real world data
drtSpeedUpParams.initialWaitingTime = 345.6;
// update to real world data
drtSpeedUpParams.initialInVehicleBeelineSpeed = 20/3.6;
drtSpeedUpParams.intervalDetailedIteration = 10000;
drtSpeedUpParams.waitingTimeUpdateDuringSpeedUp = DrtSpeedUpParams.WaitingTimeUpdateDuringSpeedUp.Disabled;
drtConfigGroup.addParameterSet(drtSpeedUpParams);
Expand All @@ -142,8 +144,10 @@ public static void prepareConfig(Config config, DrtCase drtCase, ShpOptions drtA
drtSpeedUpParams.fractionOfIterationsSwitchOn = 0.0;
drtSpeedUpParams.fractionOfIterationsSwitchOff = 1.0;
drtSpeedUpParams.firstSimulatedDrtIterationToReplaceInitialDrtPerformanceParams = 10000;
drtSpeedUpParams.initialWaitingTime = 345.6; // update to real world data
drtSpeedUpParams.initialInVehicleBeelineSpeed = 20/3.6; // update to real world data
// update to real world data
drtSpeedUpParams.initialWaitingTime = 345.6;
// update to real world data
drtSpeedUpParams.initialInVehicleBeelineSpeed = 20/3.6;
drtSpeedUpParams.intervalDetailedIteration = 10000;
drtSpeedUpParams.waitingTimeUpdateDuringSpeedUp = DrtSpeedUpParams.WaitingTimeUpdateDuringSpeedUp.Disabled;
drtConfigGroup.addParameterSet(drtSpeedUpParams);
Expand Down

0 comments on commit 5fe065c

Please sign in to comment.