From ff0a2e8d9d94b03c3d5bc9c3b6a2a826fbe035b5 Mon Sep 17 00:00:00 2001
From: Antonio Andriella <aandriella@iri.upc.edu>
Date: Wed, 11 Nov 2020 08:27:16 +0100
Subject: [PATCH] fix

---
 episode.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/episode.py b/episode.py
index bcc420a..b4ca4a3 100644
--- a/episode.py
+++ b/episode.py
@@ -87,8 +87,8 @@ class Episode:
                 trajs.append(Episode(traj[t]))
                 print("loaded traj ", t)
             f.close()
-        for t in trajs:
-            print(t._t)
+        # for t in trajs:
+        #     print(t._t)
         return trajs
 
 
@@ -97,7 +97,6 @@ class Episode:
         This function computes the state x state x action matrix that
         corresponds to the transition table we will use later
         '''
-        print(state_list)
         n_states = len(state_list)
         n_actions = len(action_space)
 
-- 
GitLab