annotate implementations/mtp/package.lisp @ 79:dc01096751af
implementations/mtp: implement segmentation for mtp backend
darcs-hash:20070713163437-c0ce4-59959032c152aadf21232af08cf14b5efa062268.gz
author |
Marcus Pearce <m.pearce@gold.ac.uk> |
date |
Fri, 13 Jul 2007 17:34:37 +0100 |
parents |
ce4a90427366 |
children |
03be243f9003 |
rev |
line source |
m@46
|
1 (cl:defpackage #:amuse-mtp
|
m@79
|
2 (:use #:common-lisp #:amuse #:amuse-utils #:amuse-segmentation)
|
m@53
|
3 (:export
|
m@53
|
4 ;; classes
|
m@53
|
5 #:mtp-dataset
|
m@79
|
6 #:mtp-composition
|
m@53
|
7 ;; accessors
|
m@53
|
8 #:get-dataset
|
m@53
|
9 ;; identifier constructors
|
m@53
|
10 #:make-mtp-composition-identifier
|
m@79
|
11 #:make-mtp-dataset-identifier
|
m@79
|
12 ;; phrase boundary classes
|
m@79
|
13 #:mtp-after-segmenter
|
m@79
|
14 #:mtp-before-segmenter
|
m@79
|
15 ))
|