Skip to content

Commit

Permalink
commented out not compiling freight test
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorRyb committed Jul 8, 2023
1 parent b63d7d1 commit 52d7503
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 304 deletions.
301 changes: 0 additions & 301 deletions src/main/java/org/matsim/prepare/parking/ParkingDemandPerZone.java

This file was deleted.

4 changes: 2 additions & 2 deletions src/main/java/org/matsim/run/RunBerlinWithMobBudget.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
public class RunBerlinWithMobBudget {

private static double dailyMobilityBudget;
private static double shareOfIncome;
private static double klimaTaler;
private static Map<Id<Person>, Double> personsEligibleForMobilityBudget = new HashMap<>();


Expand All @@ -58,7 +58,7 @@ public static void main(String[] args) {
};
}
dailyMobilityBudget = Double.parseDouble(args[0]);
shareOfIncome = Double.parseDouble(args[1]);
klimaTaler = Double.parseDouble(args[1]);

String[] configArgs = new String[args.length - 2];
for (int i = 2; i <= args.length - 1; i++) {
Expand Down
8 changes: 7 additions & 1 deletion src/main/java/org/matsim/run/wasteCollection/Run_Abfall.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*
package org.matsim.run.wasteCollection;
import java.util.Arrays;
Expand Down Expand Up @@ -30,6 +31,8 @@
* Abfallwirtschaft am Beispiel Berlins
*
*/

/*
public class Run_Abfall {
static final Logger log = LogManager.getLogger(Run_Abfall.class);
Expand Down Expand Up @@ -66,7 +69,7 @@ public static void main(String[] args) throws Exception {
* network, you have to select one of the Berlin cases. The beginning of the
* name of the scenario shows you the needed network.
*/

/*
netzwerkAuswahl netzwerkWahl = netzwerkAuswahl.berlinNetwork;
scenarioAuswahl scenarioWahl = null;
carrierChoice chosenCarrier = null;
Expand Down Expand Up @@ -224,6 +227,8 @@ public static void main(String[] args) throws Exception {
* so that you can already have this information, while jsprit and matsim are
* still running.
*/

/*
AbfallUtils.outputSummaryShipments(scenario, day, carrierMap);
// jsprit
Expand All @@ -244,3 +249,4 @@ public static void main(String[] args) throws Exception {
AbfallUtils.createResultFile(scenario, carriers);
}
}
*/
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* See also COPYING, LICENSE and WARRANTY file *
* *
* *********************************************************************** */
/*
package org.matsim.run.wasteCollection;
import java.util.Collection;
Expand All @@ -42,6 +44,7 @@
* @author nagel
*
*/
/*
public class AbfallUtilsTest {
@Rule
Expand Down Expand Up @@ -157,3 +160,4 @@ public final void testShapeFile() {
Assert.assertEquals(96, districtsWithGarbage.size());
}
}
*/

0 comments on commit 52d7503

Please sign in to comment.