From d8b98f347d0858128074054dea583772692365d0 Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Fri, 8 Jan 2016 21:01:22 +0100 Subject: dirty hack: do not ever quit early --- sol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1