diff options
| author | bringert <bringert@cs.chalmers.se> | 2005-12-29 16:29:21 +0000 |
|---|---|---|
| committer | bringert <bringert@cs.chalmers.se> | 2005-12-29 16:29:21 +0000 |
| commit | f4f1f04123d7dc33e9be65dd8c929bd4a21e193a (patch) | |
| tree | 394da7ba400ec719120ba5575221e72178a0960f /src/GF/Speech/FiniteState.hs | |
| parent | 5ad1ca8827064776bac896bdbd95c5efaaca7b69 (diff) | |
Finite state networks: replace some lookup tables with maps. Rewrite closure for speed.
Diffstat (limited to 'src/GF/Speech/FiniteState.hs')
| -rw-r--r-- | src/GF/Speech/FiniteState.hs | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/GF/Speech/FiniteState.hs b/src/GF/Speech/FiniteState.hs index e3975d498..e48064945 100644 --- a/src/GF/Speech/FiniteState.hs +++ b/src/GF/Speech/FiniteState.hs @@ -152,16 +152,21 @@ determinize (FA g s f) = let (ns,es) = h [start] [] [] numberStates :: (Ord x,Enum y) => FA x a b -> FA y a b numberStates (FA g s fs) = FA (renameNodes newName rest g) s' fs' where (ns,rest) = splitAt (length (nodes g)) $ [toEnum 0 .. ] - newNodes = zip (map fst (nodes g)) ns - newName n = lookup' n newNodes + newNodes = Map.fromList (zip (map fst (nodes g)) ns) + newName n = Map.findWithDefault (error "FiniteState.newName") n newNodes s' = newName s fs' = map newName fs -- | Get all the nodes reachable from a list of nodes by only empty edges. closure :: Ord n => Outgoing n a (Maybe b) -> Set n -> Set n -closure out = fix closure_ - where closure_ r = inserts [y | x <- Set.toList r, (_,y,Nothing) <- getOutgoing out x] r - inserts xs s = foldl (flip Set.insert) s xs +closure out x = closure_ x x + where closure_ acc check | Set.null check = acc + | otherwise = closure_ acc' check' + where + reach = Set.fromList [y | x <- Set.toList check, + (_,y,Nothing) <- getOutgoing out x] + acc' = acc `Set.union` reach + check' = reach Set.\\ acc -- | Get a map of labels to sets of all nodes reachable -- from a the set of nodes by one edge with the given |
