diff options
author | Florian Jung <flo@windfisch.org> | 2016-01-08 21:01:22 +0100 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2016-01-08 21:01:22 +0100 |
commit | d8b98f347d0858128074054dea583772692365d0 (patch) | |
tree | 053c497bde7558e98bf9f1a5c5079c4a8457a945 | |
parent | 92f25c46b2d3e7e22b62faa4ca450b29757e977a (diff) |
dirty hack: do not ever quit early
-rw-r--r-- | sol.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |