Derive Eq for Vertex

This commit is contained in:
Simon Bruder 2022-12-27 20:01:25 +01:00
parent 5d956a3d89
commit d823f5b33c
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -4,7 +4,7 @@ import Control.Monad (join)
import Test.QuickCheck (Arbitrary (arbitrary))
-- | One point of a path, consisting of its \(x\) and \(y\) coordinates.
newtype Vertex = Point (Double, Double)
newtype Vertex = Point (Double, Double) deriving (Eq)
instance Show Vertex where
show (Point (x, y)) = show x ++ " " ++ show y