Mercurial > hg > amuse
view tools/segmentation/classes.lisp @ 188:18d3480e7ec8
update play-midifile
find-executable-in-search-path was removed in sbcl-1.0.13
darcs-hash:20090103005528-16a00-83ef5cb3f7c00b8c46bc9fed1c0569370bc53963.gz
author | j.forth <j.forth@gold.ac.uk> |
---|---|
date | Sat, 03 Jan 2009 00:55:28 +0000 |
parents | 7ed6a263f844 |
children |
line wrap: on
line source
(in-package "AMUSE-SEGMENTATION") (defclass segmenter (amuse:amuse-object) () (:documentation "Base class for identifying segment-boundary methods.")) (defclass before-segmenter (segmenter) () (:documentation "A segmenter binding to moments before a boundary.")) (defclass after-segmenter (segmenter) () (:documentation "A segmenter binding to moments after a boundary.")) (defclass ground-truth-segmenter (segmenter) ()) (defclass segmentation () () (:documentation "Base class for delivering the results of segmentation"))