From b185ba0f3e5700996e212034791f4e145e6ec8aa Mon Sep 17 00:00:00 2001 From: Zafir Stojanovski Date: Mon, 3 Feb 2025 23:25:01 +0100 Subject: [PATCH] pre-commit --- reasoning_gym/graphs/largest_island.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/reasoning_gym/graphs/largest_island.py b/reasoning_gym/graphs/largest_island.py index 364d2687..ee2615e7 100644 --- a/reasoning_gym/graphs/largest_island.py +++ b/reasoning_gym/graphs/largest_island.py @@ -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