From 757bac62774d06188b9d42022e97a9c76ecbcc8f Mon Sep 17 00:00:00 2001 From: Jane Petrovna Date: Tue, 10 Nov 2020 19:31:26 -0500 Subject: [PATCH] debug statements --- pattern.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pattern.py b/pattern.py index 4b24130..be4157b 100644 --- a/pattern.py +++ b/pattern.py @@ -125,6 +125,7 @@ def pat(index, tick, previous_values): args = this.pattern[i]['instruction']['args'] if this.instructions[name] != None: jump = apply(i, targets, args, this.instructions[name]) + print("{} {} {}".format(jump, i, len(this.pattern))) if jump != i and jump < len(this.pattern) - 1: i = jump - 1 r = this.values["r"]