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

Endpoint fields are strict.

This commit is contained in:
Rob Rix 2017-03-09 10:49:32 -05:00
parent 0624d24aa7
commit 6b696876ce

View File

@ -21,7 +21,7 @@ data Snake = Snake { xy :: Endpoint, uv :: Endpoint }
newtype EditDistance = EditDistance { unEditDistance :: Int }
newtype Diagonal = Diagonal { unDiagonal :: Int }
newtype Endpoint = Endpoint { unEndpoint :: (Int, Int) }
data Endpoint = Endpoint { x :: !Int, y :: !Int }
data Direction = Forward | Reverse
@ -29,9 +29,9 @@ decompose :: MyersF a -> Myers a
decompose myers = case myers of
SES {} -> return []
MiddleSnake {} -> return (Snake (Endpoint (0, 0)) (Endpoint (0, 0)), EditDistance 0)
MiddleSnake {} -> return (Snake (Endpoint 0 0) (Endpoint 0 0), EditDistance 0)
FindDPath {} -> return (Endpoint (0, 0))
FindDPath {} -> return (Endpoint 0 0)
-- Implementation details
@ -47,10 +47,10 @@ getK direction diagonal = do
at :: Vector.Vector Int -> Diagonal -> Myers Endpoint
at v (Diagonal k) = do
Diagonal o <- gets offset
return (Endpoint (v Vector.! o + k, 0))
return (Endpoint (v Vector.! o + k) 0)
overlaps :: Endpoint -> Endpoint -> Bool
overlaps (Endpoint (x, y)) (Endpoint (u, v)) = x - y == u - v && x <= u
overlaps (Endpoint x y) (Endpoint u v) = x - y == u - v && x <= u
-- Instances