From cc2593028c5f380e177adbf8905a43d665ac64cf Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 15 Mar 2020 14:34:31 +0100 Subject: atom module with rational and imaginary types and operations --- src/matrix.hs | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/matrix.hs') diff --git a/src/matrix.hs b/src/matrix.hs index 38780bb..7de634b 100644 --- a/src/matrix.hs +++ b/src/matrix.hs @@ -1,10 +1,3 @@ module Matrix where --- import Data.List --- newtype Matrix a = Matrix { getMatrix :: [MatrixRow a] } --- type MatrixRow a = [a] - --- instance Show a => Show (Matrix a) where --- show (Matrix m) = intercalate "\n" (map showLine m) --- where showLine l = "[ " ++ intercalate " , " (map show l) ++ " ]" -- cgit