Make the board bigger

This commit is contained in:
Chris Proctor
2026-06-25 13:01:56 -04:00
parent 048cb1c02b
commit 8294311d4b

View File

@@ -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