Skip to content

Commit

Permalink
start implementing policy cases
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorRyb committed Mar 13, 2024
1 parent 618f45a commit 5600b48
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/java/org/matsim/run/policies/RunCarFreeLarge.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package org.matsim.run.policies;

import org.matsim.application.MATSimApplication;
import org.matsim.run.LeipzigScenario;

public class RunCarFreeLarge {

private RunCarFreeLarge() {
}

public static void main(String[] args) {
String[] argsForPolicy = new String[]{
"--car-free-area", "net/ils/matsim-leipzig/input/shp/leipzig_carfree_area_large"
};
MATSimApplication.runWithDefaults(LeipzigScenario.class, argsForPolicy);
}

}

0 comments on commit 5600b48

Please sign in to comment.