summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2016-01-08 21:01:22 +0100
committerFlorian Jung <flo@windfisch.org>2016-01-08 21:01:22 +0100
commitd8b98f347d0858128074054dea583772692365d0 (patch)
tree053c497bde7558e98bf9f1a5c5079c4a8457a945
parent92f25c46b2d3e7e22b62faa4ca450b29757e977a (diff)
dirty hack: do not ever quit early
-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