annotate utils/harmony/methods.lisp @ 37:9aeb5bff013a

Added levenshtein distance with cost functions darcs-hash:20070516124658-f76cc-8b96080b5c4018f2077650697bec4d1213917505.gz
author David Lewis <d.lewis@gold.ac.uk>
date Wed, 16 May 2007 13:46:58 +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