1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 04:51:57 +03:00

Stub in a type of endpoints.

This commit is contained in:
Rob Rix 2017-03-09 10:23:33 -05:00
parent f6ada9b441
commit 7889f1481b

View File

@ -17,6 +17,7 @@ data Snake = Snake { x :: Int, y :: Int, u :: Int, v :: Int }
newtype EditDistance = EditDistance { unEditDistance :: Int }
newtype Diagonal = Diagonal { unDiagonal :: Int }
newtype Endpoint = Endpoint { unEndpoint :: (Int, Int) }
decompose :: MyersF a -> Myers a