From 5e0b04fc156451678e3a8923878f088789b54107 Mon Sep 17 00:00:00 2001 From: 2wenty1ne Date: Wed, 3 Dec 2025 21:55:08 +0100 Subject: [PATCH] Removes clock tick control --- ReinforcmentLearning/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReinforcmentLearning/game.py b/ReinforcmentLearning/game.py index 47cc11a..d1e155a 100644 --- a/ReinforcmentLearning/game.py +++ b/ReinforcmentLearning/game.py @@ -216,7 +216,7 @@ def run_game(q_values, EPSILON, ALPHA, GAMMA, REWARD_ON_WIN, REWARD_ON_LOSE): # pygame.display.flip() # Cap the frame rate - clock.tick(1000000) + # clock.tick(1000000) pygame.quit()