annotate utils/harmony/methods.lisp @ 35:1d757c33e00e
Changes for midi file import
darcs-hash:20070502153016-f76cc-89b748c36180ccaca77d2a70a65a6e7f77df8d43.gz
author |
David Lewis <d.lewis@gold.ac.uk> |
date |
Wed, 02 May 2007 16:30:16 +0100 |
parents |
d1010755f507 |
children |
|
rev |
line source |
d@33
|
1 (in-package #:amuse-harmony)
|
d@33
|
2
|
d@33
|
3 (defgeneric get-ground-truth-periods (anchored-period composition)
|
d@33
|
4 (:method (ap c) (declare (ignore ap c)) nil))
|
d@33
|
5
|
d@33
|
6 (defgeneric get-ground-truth-chord (ground-truth-period composition)
|
d@33
|
7 (:method (gtp c) (declare (ignore gtp c)) nil))
|
d@33
|
8
|