From 8294311d4b09af169527fa8ceebb201665608629 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Thu, 25 Jun 2026 13:01:56 -0400 Subject: [PATCH] Make the board bigger --- babysnake/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babysnake/__init__.py b/babysnake/__init__.py index 25fcb77..a426e8e 100644 --- a/babysnake/__init__.py +++ b/babysnake/__init__.py @@ -17,7 +17,7 @@ def get_state(game): s = game.state return (int(s['agent_x']), int(s['agent_y']), int(s['food_x']), int(s['food_y'])) -BOARD_SIZE = 4 +BOARD_SIZE = 8 START_ENERGY = 50 FOOD_ENERGY = 30