-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from Farama-Foundation/evaluation_route_choice
Evaluation route choice + renaming references of "congestion" game to route_choice for consistency
- Loading branch information
Showing
35 changed files
with
3,683 additions
and
3,140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
autogenerated: | ||
title: MO-RouteChoice | ||
firstpage: | ||
--- | ||
|
||
# MO-RouteChoice | ||
|
||
| | | | ||
|---|-----------------------------------| | ||
| Agents names | `agent_i for i in [0, 4199]` | | ||
| Action Space | Discrete(3) | | ||
| Observation Space | Box(0.0, 4200.0, (1,), float32) | | ||
| Reward Space | Box(-3.0, 0.0, (2,), float32) | | ||
| Import | `momaland.envs.mo_routechoice_v0` | | ||
|
||
Environment for MO-RouteChoice problem. | ||
|
||
The init method takes in environment arguments and should define the following attributes: | ||
- possible_agents | ||
- action_spaces | ||
- observation_spaces | ||
These attributes should not be changed after initialization. |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
momaland/envs/congestion/__init__.py → momaland/envs/route_choice/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""Route choice environment for multi-objective optimization.""" | ||
from momaland.envs.route_choice.route_choice import env, parallel_env, raw_env | ||
|
||
|
||
__all__ = ["env", "parallel_env", "raw_env"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.