Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
build(deps): bump the java-dependencies group with 1 update
Browse files Browse the repository at this point in the history
Bumps the java-dependencies group with 1 update: [org.matsim:matsim-all](https://github.com/matsim-org/matsim).

- [Release notes](https://github.com/matsim-org/matsim/releases)
- [Commits](https://github.com/matsim-org/matsim/commits)

---
updated-dependencies:
- dependency-name: org.matsim:matsim-all
  dependency-type: direct:production
  dependency-group: java-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and michalmac committed Oct 29, 2023
1 parent d022de7 commit 65ae04b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.matsim</groupId>
<artifactId>matsim-all</artifactId>
<version>16.0-2023w41</version>
<version>16.0-2023w43</version>
<relativePath/>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/matsim/maas/taxi/RunRobotaxiExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static void main(String[] args) {
public static void run(String configFile, boolean otfvis, int lastIteration) {
Config config = ConfigUtils.loadConfig(configFile, new DvrpConfigGroup(), new OTFVisConfigGroup(),
new MultiModeTaxiConfigGroup());
config.controler().setLastIteration(lastIteration);
config.controller().setLastIteration(lastIteration);

TaxiControlerCreator.createControler(config, otfvis).run();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/matsim/maas/taxi/RunTaxiExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static void run(String configFile, boolean otfvis, int lastIteration) {
// load config
Config config = ConfigUtils.loadConfig(configFile, new MultiModeTaxiConfigGroup(), new DvrpConfigGroup(),
new OTFVisConfigGroup());
config.controler().setLastIteration(lastIteration);
config.controller().setLastIteration(lastIteration);

TaxiControlerCreator.createControler(config, otfvis).run();
}
Expand Down

0 comments on commit 65ae04b

Please sign in to comment.