aboutsummaryrefslogtreecommitdiff
path: root/src/matrix.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrix.hs')
-rw-r--r--src/matrix.hs7
1 files changed, 0 insertions, 7 deletions
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) ++ " ]"