summaryrefslogtreecommitdiff
path: root/src/GF/Data/GeneralDeduction.hs
diff options
context:
space:
mode:
authorpeb <unknown>2005-04-11 12:57:45 +0000
committerpeb <unknown>2005-04-11 12:57:45 +0000
commitac00f77dadd4d447803dd7cab5a36f47365325d0 (patch)
tree2fd02b19234f8d1fcc20ee67a2367d4d4eebfcd8 /src/GF/Data/GeneralDeduction.hs
parentf6273f7033b85eea9a8d0cc7d31e9697ba95d5b7 (diff)
"Committed_by_peb"
Diffstat (limited to 'src/GF/Data/GeneralDeduction.hs')
-rw-r--r--src/GF/Data/GeneralDeduction.hs117
1 files changed, 117 insertions, 0 deletions
diff --git a/src/GF/Data/GeneralDeduction.hs b/src/GF/Data/GeneralDeduction.hs
new file mode 100644
index 000000000..75511ee7a
--- /dev/null
+++ b/src/GF/Data/GeneralDeduction.hs
@@ -0,0 +1,117 @@
+----------------------------------------------------------------------
+-- |
+-- Maintainer : Peter Ljunglöf
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date: 2005/04/11 13:52:51 $
+-- > CVS $Author: peb $
+-- > CVS $Revision: 1.1 $
+--
+-- Simple implementation of deductive chart parsing
+-----------------------------------------------------------------------------
+
+module GF.NewParsing.GeneralChart
+ (-- * Type definition
+ ParseChart,
+ -- * Main functions
+ chartLookup,
+ buildChart, buildChartM,
+ -- * Probably not needed
+ emptyChart,
+ chartMember,
+ chartInsert, chartInsertM,
+ chartList,
+ addToChart, addToChartM
+ ) where
+
+-- import Trace
+
+import GF.Data.RedBlackSet
+import Monad (foldM)
+
+----------------------------------------------------------------------
+-- main functions
+
+chartLookup :: (Ord item, Ord key) => ParseChart item key -> key -> [item]
+chartList :: (Ord item, Ord key) => ParseChart item key -> [item]
+buildChart :: (Ord item, Ord key) =>
+ (item -> key) -- ^ key lookup function
+ -> [ParseChart item key -> item -> [item]] -- ^ list of inference rules as functions
+ -- from triggering items to lists of items
+ -> [item] -- ^ initial chart
+ -> ParseChart item key -- ^ final chart
+buildChartM :: (Ord item, Ord key) =>
+ (item -> [key]) -- ^ many-valued key lookup function
+ -> [ParseChart item key -> item -> [item]] -- ^ list of inference rules as functions
+ -- from triggering items to lists of items
+ -> [item] -- ^ initial chart
+ -> ParseChart item key -- ^ final chart
+
+buildChart keyof rules axioms = addItems axioms emptyChart
+ where addItems [] = id
+ addItems (item:items) = addItems items . addItem item
+ -- addItem item | trace ("+ "++show item++"\n") False = undefined
+ addItem item = addToChart item (keyof item)
+ (\chart -> foldr (consequence item) chart rules)
+ consequence item rule chart = addItems (rule chart item) chart
+
+buildChartM keysof rules axioms = addItems axioms emptyChart
+ where addItems [] = id
+ addItems (item:items) = addItems items . addItem item
+ -- addItem item | trace ("+ "++show item++"\n") False = undefined
+ addItem item = addToChartM item (keysof item)
+ (\chart -> foldr (consequence item) chart rules)
+ consequence item rule chart = addItems (rule chart item) chart
+
+-- probably not needed
+
+emptyChart :: (Ord item, Ord key) => ParseChart item key
+chartMember :: (Ord item, Ord key) => ParseChart item key
+ -> item -> key -> Bool
+chartInsert :: (Ord item, Ord key) => ParseChart item key
+ -> item -> key -> Maybe (ParseChart item key)
+chartInsertM :: (Ord item, Ord key) => ParseChart item key
+ -> item -> [key] -> Maybe (ParseChart item key)
+
+addToChart :: (Ord item, Ord key) => item -> key
+ -> (ParseChart item key -> ParseChart item key)
+ -> ParseChart item key -> ParseChart item key
+addToChart item keys after chart = maybe chart after (chartInsert chart item keys)
+
+addToChartM :: (Ord item, Ord key) => item -> [key]
+ -> (ParseChart item key -> ParseChart item key)
+ -> ParseChart item key -> ParseChart item key
+addToChartM item keys after chart = maybe chart after (chartInsertM chart item keys)
+
+
+--------------------------------------------------------------------------------
+-- key charts as red/black trees
+
+newtype ParseChart item key = KC (RedBlackMap key item)
+ deriving Show
+
+emptyChart = KC rbmEmpty
+chartMember (KC tree) item key = rbmElem key item tree
+chartLookup (KC tree) key = rbmLookup key tree
+chartList (KC tree) = concatMap snd (rbmList tree)
+chartInsert (KC tree) item key = fmap KC (rbmInsert key item tree)
+
+chartInsertM (KC tree) item keys = fmap KC (foldM insertItem tree keys)
+ where insertItem tree key = rbmInsert key item tree
+
+--------------------------------------------------------------------------------}
+
+
+{--------------------------------------------------------------------------------
+-- key charts as unsorted association lists -- OBSOLETE!
+
+newtype Chart item key = SC [(key, item)]
+
+emptyChart = SC []
+chartMember (SC chart) item key = (key,item) `elem` chart
+chartInsert (SC chart) item key = if (key,item) `elem` chart then Nothing else Just (SC ((key,item):chart))
+chartLookup (SC chart) key = [ item | (key',item) <- chart, key == key' ]
+chartList (SC chart) = map snd chart
+--------------------------------------------------------------------------------}
+