How to use a user defined function, defined in my def-unfold-set "my-mehods" (in-package :Opusmodus), in the counterpoint function?
Example
(setf test-pattern '(e c4 d4 e4 f4 g4 a4 b4 c5))
(unfold ' my-mehods '(amb-c6b6) test-pattern) ;; works perfectly, shifting up pitches
However how do I use this function amb-c6b6 in the counterpoint function?
#|1|# ((2 - 6 5) :methods ( amb-c6b6 - (r t-12) t-12)) ;;error, how to unfold amb-c6b6?
Thanks for any idea!