diff options
| author | bringert <unknown> | 2005-04-21 15:21:02 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2005-04-21 15:21:02 +0000 |
| commit | 5c9917ff8d18ddaefd5a8bf4b223009747477fd8 (patch) | |
| tree | 46345cb91a8e0fa626a0bf4c03af8f8ef4cad09f /src/GF/UseGrammar/Morphology.hs | |
| parent | 3433c978480f112bf04a895d03ec15529796ecce (diff) | |
Fixed module names and imports after giant file move.
Diffstat (limited to 'src/GF/UseGrammar/Morphology.hs')
| -rw-r--r-- | src/GF/UseGrammar/Morphology.hs | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/GF/UseGrammar/Morphology.hs b/src/GF/UseGrammar/Morphology.hs index 62aeb7725..626269836 100644 --- a/src/GF/UseGrammar/Morphology.hs +++ b/src/GF/UseGrammar/Morphology.hs @@ -5,9 +5,9 @@ -- Stability : (stable) -- Portability : (portable) -- --- > CVS $Date: 2005/02/24 11:46:39 $ --- > CVS $Author: peb $ --- > CVS $Revision: 1.7 $ +-- > CVS $Date: 2005/04/21 16:23:49 $ +-- > CVS $Author: bringert $ +-- > CVS $Revision: 1.8 $ -- -- Morphological analyser constructed from a GF grammar. -- @@ -17,24 +17,24 @@ -- for decompositions and also want to use it in the parser ----------------------------------------------------------------------------- -module Morphology where +module GF.UseGrammar.Morphology where -import AbsGFC -import GFC -import PrGrammar -import CMacros -import LookAbs -import Ident -import qualified Macros as M -import Linear +import GF.Canon.AbsGFC +import GF.Canon.GFC +import GF.Grammar.PrGrammar +import GF.Canon.CMacros +import GF.Grammar.LookAbs +import GF.Infra.Ident +import qualified GF.Grammar.Macros as M +import GF.UseGrammar.Linear -import Operations -import Glue +import GF.Data.Operations +import GF.Data.Glue -import Char -import List (sortBy, intersperse) -import Monad (liftM) -import Trie2 +import Data.Char +import Data.List (sortBy, intersperse) +import Control.Monad (liftM) +import GF.Data.Trie2 -- construct a morphological analyser from a GF grammar. AR 11/4/2001 |
