annotate utils/harmony/methods.lisp @ 46:34fb42cba5b9

basic mtp amuse implementation darcs-hash:20070615111202-aa3d6-498f4d035964f6f8e8803de9cbf6f50974affe88.gz
author m.pearce <m.pearce@gold.ac.uk>
date Fri, 15 Jun 2007 12:12:02 +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