summaryrefslogtreecommitdiff
path: root/src/PGF.hs
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2009-09-28 12:06:20 +0000
committerkrasimir <krasimir@chalmers.se>2009-09-28 12:06:20 +0000
commit288ef038f21a043aacd292b3e958aad06ac6beca (patch)
tree61e5616658f847889b71955af3dea25fd025d7cd /src/PGF.hs
parent726d160c8d79f148b5dc14e5616ec4302fe084a9 (diff)
export the morphology API from PGF
Diffstat (limited to 'src/PGF.hs')
-rw-r--r--src/PGF.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/PGF.hs b/src/PGF.hs
index 8510aafa5..1efabcc3c 100644
--- a/src/PGF.hs
+++ b/src/PGF.hs
@@ -77,7 +77,11 @@ module PGF(
Incremental.initState, Incremental.nextState, Incremental.getCompletions, Incremental.extractTrees,
-- ** Generation
- generateRandom, generateAll, generateAllDepth
+ generateRandom, generateAll, generateAllDepth,
+
+ -- ** Morphological Analysis
+ Lemma, Analysis, Morpho,
+ lookupMorpho, buildMorpho
) where
import PGF.CId
@@ -87,6 +91,7 @@ import PGF.TypeCheck
import PGF.Paraphrase
import PGF.Macros
import PGF.Expr (Tree)
+import PGF.Morphology
import PGF.Data hiding (functions)
import PGF.Binary
import qualified PGF.Parsing.FCFG.Active as Active