diff options
author | John Glover <j@johnglover.net> | 2012-06-30 10:49:36 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-06-30 10:49:36 +0100 |
commit | 3e690c70064d884d0e750db3ae6fcf47f1807ab4 (patch) | |
tree | 46d7a1156afc043bc452aaddb358aefe4b642049 /tests/test_sms.py | |
parent | 08c52adafddabeb6c7f89bebd84f0ca830d9e7a5 (diff) | |
download | simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.tar.gz simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.tar.bz2 simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.zip |
Restructure class files.
Group classes by type (peak detection, partial
tracking, etc) rather than by algorithm name. This
is because Cython needs the full inheritance
hierarchy to be in the same file.
Diffstat (limited to 'tests/test_sms.py')
-rw-r--r-- | tests/test_sms.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_sms.py b/tests/test_sms.py index 514ead4..98b48c2 100644 --- a/tests/test_sms.py +++ b/tests/test_sms.py @@ -6,8 +6,6 @@ import simpl import simpl.simplsms as simplsms float_precision = 2 -frame_size = 512 -hop_size = 512 audio_path = os.path.join( os.path.dirname(__file__), 'audio/flute.wav' ) |