]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Add Vec1, Vec4, Vec5 aliases.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 24 Feb 2013 07:01:24 +0000 (02:01 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 24 Feb 2013 07:01:24 +0000 (02:01 -0500)
src/Linear/Vector.hs

index a7885e4aea628b91fdb205b232602082e52093e5..ec6ebcbfba47722110a056e90fb2590f93c8ed7d 100644 (file)
@@ -14,6 +14,7 @@ import Data.Vector.Fixed (
   N2,
   N3,
   N4,
+  N5,
   S,
   Vector(..),
   construct,
@@ -24,7 +25,11 @@ import Data.Vector.Fixed (
 import qualified Data.Vector.Fixed as V (
   length,
   )
+import Data.Vector.Fixed.Boxed
 
+type Vec1 = Vec N1
+type Vec4 = Vec N4
+type Vec5 = Vec N5
 
 -- * Low-dimension vector wrappers.
 --