Skip to content

Commit

Permalink
Changed default params
Browse files Browse the repository at this point in the history
  • Loading branch information
kosmydel committed Jan 15, 2023
1 parent e8e6fdb commit 751a40b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@


class GridWorldEnv:
def __init__(self, render_mode=None, map_size=30, num_of_vehicles=5):
def __init__(self, render_mode=None, map_size=42, num_of_vehicles=80):
# Generate grid map and its junctions
self.map, self.junctions = self.generate_map(map_size, map_size, 1, 1)
self.map, self.junctions = self.generate_map(map_size, map_size, 3, 3)

n, m = self.map.shape
self.day = 0
Expand Down

0 comments on commit 751a40b

Please sign in to comment.