1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00

Extract the definition of the empty state.

This commit is contained in:
Rob Rix 2017-03-13 11:33:46 -04:00
parent 315927763f
commit beefe1ac20

View File

@ -43,7 +43,7 @@ data Direction = Forward | Reverse
-- Evaluation
runMyers :: HasCallStack => (a -> a -> Bool) -> Myers a b -> b
runMyers eq = runAll $ MyersState (Vector.replicate 100 0) (Vector.replicate 100 0)
runMyers eq = runAll emptyState
where runAll state step = case runMyersStep eq state step of
Left a -> a
Right next -> uncurry runAll next
@ -183,6 +183,9 @@ getEq = GetEq `Then` return
data MyersState = MyersState { forward :: !(Vector.Vector Int), backward :: !(Vector.Vector Int) }
emptyState :: MyersState
emptyState = MyersState (Vector.replicate 100 0) (Vector.replicate 100 0)
setForward :: Vector.Vector Int -> Myers a ()
setForward v = modify (\ s -> s { forward = v })