ad 0.44.2 → 0.44.3
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Numeric/AD/Internal/Classes.hs +2/−2
- Numeric/AD/Internal/Types.hs +1/−1
- ad.cabal +2/−2
Numeric/AD/Internal/Classes.hs view
@@ -199,8 +199,8 @@ abs1 = lift1 abs signum1 signum1 = lift1 signum (const zero) fromRational1 = lift . fromRational- (/!) = lift2 (/) $ \x y -> (recip1 y, x *! negate1 (square1 y))- recip1 = lift1 recip (negate1 . square1)+ (/!) = lift2_ (/) $ \a x y -> (recip1 y, x *! negate1 (square1 a))+ recip1 = lift1_ recip (const . negate1 . square1) pi1 = lift pi exp1 = lift1_ exp const
Numeric/AD/Internal/Types.hs view
@@ -16,7 +16,7 @@ ) where import Data.Data (Data(..), mkDataType, DataType, mkConstr, Constr, constrIndex, Fixity(..))-import Data.Typeable (Typeable1(..), Typeable(..), TyCon, mkTyCon, mkTyConApp, typeOfDefault, gcast1)+import Data.Typeable (Typeable1(..), Typeable(..), TyCon, mkTyCon, mkTyConApp, gcast1) import Language.Haskell.TH import Numeric.AD.Internal.Classes
ad.cabal view
@@ -1,5 +1,5 @@ name: ad-version: 0.44.2+version: 0.44.3 license: BSD3 license-File: LICENSE copyright: (c) Edward Kmett 2010,@@ -58,7 +58,7 @@ . Changes since 0.40.0 .- * Bug fix in the derivative calculated for @'(/)' :: (Mode s, Fractional a) => AD s a@+ * Fixed bug fix for @'(/)' :: (Mode s, Fractional a) => AD s a@ . * Improved documentation .