From 5ae8cdc3d08fb1aae74e6da5c647c6c76cb46d15 Mon Sep 17 00:00:00 2001 From: bringert Date: Thu, 10 Nov 2005 13:19:33 +0000 Subject: Moved FA and regular grammar printers to a separate module. --- src/GF/Speech/PrSLF.hs | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) (limited to 'src/GF/Speech/PrSLF.hs') diff --git a/src/GF/Speech/PrSLF.hs b/src/GF/Speech/PrSLF.hs index 33ddf03ca..7a328dd1d 100644 --- a/src/GF/Speech/PrSLF.hs +++ b/src/GF/Speech/PrSLF.hs @@ -5,9 +5,9 @@ -- Stability : (stable) -- Portability : (portable) -- --- > CVS $Date: 2005/09/14 16:08:35 $ +-- > CVS $Date: 2005/11/10 14:19:33 $ -- > CVS $Author: bringert $ --- > CVS $Revision: 1.10 $ +-- > CVS $Revision: 1.11 $ -- -- This module converts a CFG to an SLF finite-state network -- for use with the ATK recognizer. The SLF format is described @@ -18,8 +18,7 @@ -- categories in the grammar ----------------------------------------------------------------------------- -module GF.Speech.PrSLF (slfPrinter,slfGraphvizPrinter, - faGraphvizPrinter,regularPrinter) where +module GF.Speech.PrSLF (slfPrinter,slfGraphvizPrinter) where import GF.Data.Utilities import GF.Conversion.Types @@ -56,21 +55,6 @@ slfGraphvizPrinter :: Ident -- ^ Grammar name slfGraphvizPrinter name opts cfg = prFAGraphviz (mapStates (fromMaybe "") $ mapTransitions (const "") $ moveLabelsToNodes $ cfgToFA name opts cfg) -faGraphvizPrinter :: Ident -- ^ Grammar name - -> Options -> CGrammar -> String -faGraphvizPrinter name opts cfg = - prFAGraphviz (mapStates (const "") $ mapTransitions (fromMaybe "") $ cfgToFA name opts cfg) - - --- | Convert the grammar to a regular grammar and print it in BNF -regularPrinter :: CGrammar -> String -regularPrinter = prCFRules . makeSimpleRegular - where - prCFRules :: CFRules -> String - prCFRules g = unlines [ c ++ " ::= " ++ join " | " (map (showRhs . ruleRhs) rs) | (c,rs) <- g] - join g = concat . intersperse g - showRhs = unwords . map (symbol id show) - automatonToSLF :: FA State (Maybe String) () -> SLF automatonToSLF fa = SLF { slfNodes = map mkSLFNode (states fa), -- cgit v1.2.3