From 70f61efaf6e3b20137df80685ca7e6ab9eea37bf Mon Sep 17 00:00:00 2001 From: Matej Straka Date: Mon, 23 Dec 2024 22:58:06 +0100 Subject: [PATCH] docs: Update docs --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ef4bb0..296663b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,8 @@ import gymnasium as gym from generals import GridFactory grid_factory = GridFactory( - grid_dims=(10, 10), # Dimensions of the grid (height, width) + min_grid_dims=(10, 10), # Grid height and width are randomly selected + max_grid_dims=(15, 15), mountain_density=0.2, # Probability of a mountain in a cell city_density=0.05, # Probability of a city in a cell general_positions=[(0,3),(5,7)], # Positions of generals (i, j)