annotate amuse-mtp.asd @ 111:f49aa290b5c3
diatonic pitch intervals
Implement diatonic pitch intervals. In the process, the pitch-foo methods
have been slightly rearranged: the system currently should reject attempts
to add chromatic intervals to diatonic pitches and vice versa. Complain
(or, preferably, fix) if any breakage results...
darcs-hash:20070726151244-dc3a5-3587adb88c494f7074c5e36a3983fde1a3d69da1.gz
author |
c.rhodes <c.rhodes@gold.ac.uk> |
date |
Thu, 26 Jul 2007 16:12:44 +0100 |
parents |
6c8fd815603e |
children |
|
rev |
line source |
m@66
|
1 (asdf:defsystem amuse-mtp
|
m@66
|
2 :name "amuse-mtp"
|
m@66
|
3 :description ""
|
m@66
|
4 :serial t
|
m@66
|
5 :depends-on ("amuse" "clsql")
|
m@66
|
6 :components
|
m@66
|
7 ((:module implementations
|
m@66
|
8 :components
|
m@66
|
9 ((:module mtp
|
m@66
|
10 :components
|
m@66
|
11 ((:file "package")
|
m@66
|
12 (:file "classes" :depends-on ("package"))
|
m@66
|
13 (:file "constructors" :depends-on ("package" "classes"))
|
m@66
|
14 (:file "methods" :depends-on ("package" "classes"))))))))
|