Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zafstojano committed Feb 3, 2025
1 parent feeb85c commit b185ba0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions reasoning_gym/graphs/largest_island.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ class LargestIslandConfig:

rows: int = 10 # Number of rows in the grid
cols: int = 10 # Number of columns in the grid
max_num_islands: int = 5 # Maximum number of islands (actual max might be smaller due to merging of islands during random walk)
max_island_size: int = 10 # Maximum size of an island (actual max might be larger due to merging of islands during random walk)
max_num_islands: int = (
5 # Maximum number of islands (actual max might be smaller due to merging of islands during random walk)
)
max_island_size: int = (
10 # Maximum size of an island (actual max might be larger due to merging of islands during random walk)
)

size: int = 500 # Virtual dataset size
seed: Optional[int] = None
Expand Down

0 comments on commit b185ba0

Please sign in to comment.