From 233e94d94f7a9a5aa932875f2470f3678cd9183a Mon Sep 17 00:00:00 2001 From: kris Date: Sun, 3 Jul 2022 23:09:04 +0100 Subject: [PATCH] Tidy --- lookahead.pyx | 3 --- 1 file changed, 3 deletions(-) diff --git a/lookahead.pyx b/lookahead.pyx index 655efc3..c2cb821 100644 --- a/lookahead.pyx +++ b/lookahead.pyx @@ -4,8 +4,6 @@ # cython: wraparound=False -cimport cython -from libc.stdlib cimport malloc, free import numpy as np @@ -34,7 +32,6 @@ def evolve_return_best(object speaker, float position1, float position2, float v error += (y * scale - data[j]) ** 2 if error > lowest_err: break - # output[i, j] = y x2 = x1 x1 = voltages[i, j] # XXX does this really always lag? y2 = y1