summaryrefslogtreecommitdiff
path: root/edit-lens/src
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-02-04 17:39:46 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2018-02-04 17:39:46 +0100
commit529d127667a366f306f975b3ed34e8a118f3cefc (patch)
tree01be59b0bfbe21e3691e81cf08bcfe39f0be08ee /edit-lens/src
parent3439c87294a7e25cea88632cdcc0630d4f3746bc (diff)
downloadincremental-dfsts-529d127667a366f306f975b3ed34e8a118f3cefc.tar
incremental-dfsts-529d127667a366f306f975b3ed34e8a118f3cefc.tar.gz
incremental-dfsts-529d127667a366f306f975b3ed34e8a118f3cefc.tar.bz2
incremental-dfsts-529d127667a366f306f975b3ed34e8a118f3cefc.tar.xz
incremental-dfsts-529d127667a366f306f975b3ed34e8a118f3cefc.zip
Define DFSTs
Diffstat (limited to 'edit-lens/src')
-rw-r--r--edit-lens/src/Data/String/DFST.hs38
1 files changed, 38 insertions, 0 deletions
diff --git a/edit-lens/src/Data/String/DFST.hs b/edit-lens/src/Data/String/DFST.hs
new file mode 100644
index 0000000..8a22dd3
--- /dev/null
+++ b/edit-lens/src/Data/String/DFST.hs
@@ -0,0 +1,38 @@
1{-# LANGUAGE RecordWildCards
2 , PatternGuards
3 , ScopedTypeVariables
4#-}
5
6{-|
7Description: Deterministic finite state transducers
8-}
9module Data.String.DFST
10 ( DFST(..)
11 , runDFST
12 ) where
13
14import Data.Map.Strict (Map, (!?))
15import qualified Data.Map.Strict as Map
16
17import Data.Set (Set)
18import qualified Data.Set as Set
19
20data DFST state = DFST
21 { stInitial :: state
22 , stTransition :: Map (state, Char) (state, Maybe Char)
23 -- ^ All @(s, c)@-combinations not mapped are assumed to map to @(s, Nothing)@
24 , stAccept :: Set state
25 }
26
27runDFST :: forall state. Ord state => DFST state -> String -> Maybe String
28runDFST DFST{..} str = ($ []) <$> go stInitial str id
29 where
30 go :: state -> String -> (String -> String) -> Maybe (String -> String)
31 go st [] acc
32 | st `Set.member` stAccept = Just acc
33 | otherwise = Nothing
34 go st (c:cs) acc
35 | Just (st', mc') <- stTransition !? (st, c)
36 = go st' cs $ acc . maybe id (:) mc'
37 | otherwise
38 = go st cs acc