packages feed

manifolds-core 0.4.0.0 → 0.4.1.0

raw patch · 2 files changed

+5/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Math.Manifold.VectorSpace.ZeroDimensional: instance Data.AdditiveGroup.AdditiveGroup s => Data.VectorSpace.InnerSpace (Math.Manifold.VectorSpace.ZeroDimensional.ZeroDim s)
+ Math.Manifold.VectorSpace.ZeroDimensional: instance GHC.Classes.Eq (Math.Manifold.VectorSpace.ZeroDimensional.ZeroDim s)
+ Math.Manifold.VectorSpace.ZeroDimensional: instance GHC.Show.Show (Math.Manifold.VectorSpace.ZeroDimensional.ZeroDim s)

Files

Math/Manifold/VectorSpace/ZeroDimensional.hs view
@@ -20,7 +20,7 @@   -data ZeroDim s = Origin+data ZeroDim s = Origin deriving (Eq, Show)  instance Monoid (ZeroDim s) where   mempty = Origin@@ -42,3 +42,6 @@   basisValue = absurd   decompose Origin = []   decompose' Origin = absurd+instance (AdditiveGroup s) => InnerSpace (ZeroDim s) where+  Origin <.> Origin = zeroV+
manifolds-core.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                manifolds-core-version:             0.4.0.0+version:             0.4.1.0 synopsis:            The basic classes for the manifolds hierarchy. description:         The basic classes for the                      <http://hackage.haskell.org/package/manifolds manifolds> hierarchy.