summaryrefslogtreecommitdiff
path: root/src/GF/OldParsing/ConvertMCFGtoCFG.hs
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-06-25 16:43:48 +0000
committeraarne <aarne@cs.chalmers.se>2008-06-25 16:43:48 +0000
commitb96b36f43de3e2f8b58d5f539daa6f6d47f25870 (patch)
tree0992334be13cec6538a1dea22fbbf26ad6bdf224 /src/GF/OldParsing/ConvertMCFGtoCFG.hs
parentfe367412e0aeb4ad5c02de68e6eca382e0f96984 (diff)
removed src for 2.9
Diffstat (limited to 'src/GF/OldParsing/ConvertMCFGtoCFG.hs')
-rw-r--r--src/GF/OldParsing/ConvertMCFGtoCFG.hs52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/GF/OldParsing/ConvertMCFGtoCFG.hs b/src/GF/OldParsing/ConvertMCFGtoCFG.hs
deleted file mode 100644
index 58d141166..000000000
--- a/src/GF/OldParsing/ConvertMCFGtoCFG.hs
+++ /dev/null
@@ -1,52 +0,0 @@
-----------------------------------------------------------------------
--- |
--- Module : ConvertMCFGtoCFG
--- Maintainer : PL
--- Stability : (stable)
--- Portability : (portable)
---
--- > CVS $Date: 2005/04/21 16:22:46 $
--- > CVS $Author: bringert $
--- > CVS $Revision: 1.2 $
---
--- Converting MCFG grammars to (possibly overgenerating) CFG
------------------------------------------------------------------------------
-
-
-module GF.OldParsing.ConvertMCFGtoCFG
- (convertGrammar) where
-
-import GF.System.Tracing
-import GF.Printing.PrintParser
-
-import Control.Monad
-import GF.OldParsing.Utilities
-import qualified GF.OldParsing.MCFGrammar as MCFG
-import qualified GF.OldParsing.CFGrammar as CFG
-import GF.OldParsing.GrammarTypes
-
-convertGrammar :: MCFGrammar -> CFGrammar
-convertGrammar gram = tracePrt "#cf-rules" (prt.length) $
- concatMap convertRule gram
-
-convertRule :: MCFRule -> [CFRule]
-convertRule (MCFG.Rule cat args record name)
- = [ CFG.Rule (CFCat cat lbl) rhs (CFName name profile) |
- MCFG.Lin lbl lin <- record,
- let rhs = map (mapSymbol convertArg id) lin,
- let profile = map (argPlaces lin) [0 .. length args-1]
- ]
-
-convertArg (cat, lbl, _arg) = CFCat cat lbl
-
-argPlaces lin arg = [ place | ((_cat, _lbl, arg'), place) <-
- zip (filterCats lin) [0::Int ..], arg == arg' ]
-
-filterCats syms = [ cat | Cat cat <- syms ]
-
-
-
-
-
-
-