summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-04-03 07:39:18 +0100
committerDominic Steinitz <dominic@steinitz.org>2018-04-03 07:39:18 +0100
commit6c120cf8c1271da8c39926b47384ac1b117e7c96 (patch)
tree903fa549ea33ae9eff9fb527375f87548948d41d
parent41126759c32cdf3ee20ef9e79df31905893656e0 (diff)
parent033815c6183da48233dd249abcd232685ecc21cf (diff)
Merge branch 'master' of https://github.com/albertoruiz/hmatrix
-rw-r--r--packages/base/src/Internal/Numeric.hs8
1 files changed, 1 insertions, 7 deletions
diff --git a/packages/base/src/Internal/Numeric.hs b/packages/base/src/Internal/Numeric.hs
index 216f142..fd0a217 100644
--- a/packages/base/src/Internal/Numeric.hs
+++ b/packages/base/src/Internal/Numeric.hs
@@ -790,13 +790,7 @@ type instance RealOf (Complex Float) = Float
790type instance RealOf I = I 790type instance RealOf I = I
791type instance RealOf Z = Z 791type instance RealOf Z = Z
792 792
793type family ComplexOf x 793type ComplexOf x = Complex (RealOf x)
794
795type instance ComplexOf Double = Complex Double
796type instance ComplexOf (Complex Double) = Complex Double
797
798type instance ComplexOf Float = Complex Float
799type instance ComplexOf (Complex Float) = Complex Float
800 794
801type family SingleOf x 795type family SingleOf x
802 796