summaryrefslogtreecommitdiff
path: root/src/runtime/haskell/PGF.hs
diff options
context:
space:
mode:
authorra.monique <ra.monique@gmail.com>2011-09-15 16:32:49 +0000
committerra.monique <ra.monique@gmail.com>2011-09-15 16:32:49 +0000
commitbdc77bf0e4c4b705a3deb5976271dc1fd3df3baf (patch)
treed231656ea3681cc1e801f5f6790603be541ebe1a /src/runtime/haskell/PGF.hs
parent751fd79763b4c3e76f97dc7cbb990ef3dcbebdca (diff)
added topological sort module to PGF - to be used in example based grammar writing
Diffstat (limited to 'src/runtime/haskell/PGF.hs')
-rw-r--r--src/runtime/haskell/PGF.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/runtime/haskell/PGF.hs b/src/runtime/haskell/PGF.hs
index 8530d9a71..cff225f08 100644
--- a/src/runtime/haskell/PGF.hs
+++ b/src/runtime/haskell/PGF.hs
@@ -109,7 +109,8 @@ module PGF(
-- ** Morphological Analysis
Lemma, Analysis, Morpho,
lookupMorpho, buildMorpho, fullFormLexicon,
-
+ morphoMissing,
+
-- ** Tokenizing
mkTokenizer,
@@ -128,12 +129,16 @@ module PGF(
showProbabilities,
readProbabilitiesFromFile,
+ -- ** SortTop
+ forExample,
+
-- * Browsing
browse
) where
import PGF.CId
import PGF.Linearize
+import PGF.SortTop
import PGF.Generate
import PGF.TypeCheck
import PGF.Paraphrase