packages feed

statistics 0.5.1.1 → 0.5.1.2

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Statistics/Distribution/Poisson.hs view
@@ -55,7 +55,7 @@     | l >= 3 && x >= l * 100  = 0     | x >= max 1 l * 200      = 0     | l < 20 && x <= 100      = exp (-l) * l ** x / factorial (floor x)-    | otherwise               = x * log l - logGamma (x + 1) - l+    | otherwise               = exp (x * log l - logGamma (x + 1) - l) {-# INLINE density #-}  cumulative :: PoissonDistribution -> Double -> Double
statistics.cabal view
@@ -1,5 +1,5 @@ name:           statistics-version:        0.5.1.1+version:        0.5.1.2 synopsis:       A library of statistical types, data, and functions description:   This library provides a number of common functions and types useful