packages feed

numhask 0.0.8 → 0.0.9

raw patch · 4 files changed

+5/−7 lines, 4 files

Files

numhask.cabal view
@@ -1,5 +1,5 @@ name: numhask-version: 0.0.8+version: 0.0.9 synopsis:   A numeric prelude description:@@ -28,7 +28,6 @@ extra-source-files:   readme.md   stack.yaml- library   default-language:     Haskell2010
src/NumHask/Algebra/Metric.hs view
@@ -18,9 +18,7 @@ import Data.Complex (Complex(..))  -- | abs and signnum are warts on the standard 'Num' class, and are separated here to provide a cleaner structure.-class ( AdditiveUnital a-      , AdditiveGroup a-      , MultiplicativeUnital a+class ( MultiplicativeUnital a       ) => Signed a where     sign :: a -> a     abs :: a -> a
src/NumHask/Examples.hs view
@@ -51,7 +51,6 @@ -- >>> 1 / (1::Int) -- ... -- ... No instance for (MultiplicativeGroup Int)--- ... arising from a use of ‘/’ -- ... -- -- >>> 1 / fromIntegral (1::Int)
stack.yaml view
@@ -1,1 +1,3 @@-resolver: lts-8.23+resolver: lts-8.24++extra-deps: []