summaryrefslogtreecommitdiff
path: root/sol.py
diff options
context:
space:
mode:
Diffstat (limited to 'sol.py')
-rw-r--r--sol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sol.py b/sol.py
index e369b79..ca163ce 100644
--- a/sol.py
+++ b/sol.py
@@ -412,7 +412,7 @@ for i in range(n_episodes):
# stop once we're below theta for at least 100 episodes. But not before we went above theta at least once.
if maxdiff < theta:
stopstate -= 1
- if stopstate == 0:
+ if stopstate == 0 and False: # TODO FIXME
break
else:
stopstate = 1000