From ba086a1b86e74a024e59983b7bbe5a30f2c24796 Mon Sep 17 00:00:00 2001 From: Patrick Huang Date: Thu, 7 Jul 2022 10:54:36 -0700 Subject: [PATCH] Removed print. --- bmusic/proc/mechanical.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bmusic/proc/mechanical.py b/bmusic/proc/mechanical.py index 0c541dd..c9c9e2a 100644 --- a/bmusic/proc/mechanical.py +++ b/bmusic/proc/mechanical.py @@ -225,8 +225,6 @@ def best_choice(self, notes, note_i, status, depth=1): new_status[i][1] = note.start _, depth_rew = self.best_choice(notes, note_i+1, new_status, depth-1) - if depth == 4 and notes[note_i].note == 44: - print("in", i, dist, time, rew, depth_rew) rew += depth_rew reward.append(rew)