summaryrefslogtreecommitdiff
path: root/tests/debug.py
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-07-06 14:49:57 +0100
committerJohn Glover <j@johnglover.net>2012-07-06 14:49:57 +0100
commitc967bac64c1c6534de4b89662d8824c28eb18d9a (patch)
treebcfe217916247cfe2984c7efcf1263644ed3e595 /tests/debug.py
parent23a5f9888e4c28ff5273b16e984caff32caeac69 (diff)
downloadsimpl-c967bac64c1c6534de4b89662d8824c28eb18d9a.tar.gz
simpl-c967bac64c1c6534de4b89662d8824c28eb18d9a.tar.bz2
simpl-c967bac64c1c6534de4b89662d8824c28eb18d9a.zip
[tests] Remove old test files. Ignore libsms residual waveform.
Diffstat (limited to 'tests/debug.py')
-rw-r--r--tests/debug.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/debug.py b/tests/debug.py
deleted file mode 100644
index d91b008..0000000
--- a/tests/debug.py
+++ /dev/null
@@ -1,13 +0,0 @@
-def print_peaks(frames):
- for n, f in enumerate(frames):
- for p in f:
- print str(n) + ":", p.frequency
-
-def print_partials(partials):
- for partial_num, partial in enumerate(partials):
- print partial_num,
- print "(" + str(partial.starting_frame) + " to",
- print str(partial.starting_frame + len(partial.peaks)) + "):",
- for peak_number, peak in enumerate(partial.peaks):
- print peak.frequency,
- print