mwc-random 0.8.0.1 → 0.8.0.2
raw patch · 1 files changed
+2/−1 lines, 1 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- System.Random.MWC: class (Unbox a) => Variate a
+ System.Random.MWC: class Unbox a => Variate a
- System.Random.MWC: create :: (PrimMonad m) => m (Gen (PrimState m))
+ System.Random.MWC: create :: PrimMonad m => m (Gen (PrimState m))
- System.Random.MWC: initialize :: (PrimMonad m) => Vector Word32 -> m (Gen (PrimState m))
+ System.Random.MWC: initialize :: PrimMonad m => Vector Word32 -> m (Gen (PrimState m))
- System.Random.MWC: normal :: (PrimMonad m) => Gen (PrimState m) -> m Double
+ System.Random.MWC: normal :: PrimMonad m => Gen (PrimState m) -> m Double
- System.Random.MWC: restore :: (PrimMonad m) => Seed -> m (Gen (PrimState m))
+ System.Random.MWC: restore :: PrimMonad m => Seed -> m (Gen (PrimState m))
- System.Random.MWC: save :: (PrimMonad m) => Gen (PrimState m) -> m Seed
+ System.Random.MWC: save :: PrimMonad m => Gen (PrimState m) -> m Seed
- System.Random.MWC: withSystemRandom :: (PrimMonad m) => (Gen (PrimState m) -> m a) -> IO a
+ System.Random.MWC: withSystemRandom :: PrimMonad m => (Gen (PrimState m) -> m a) -> IO a
Files
- mwc-random.cabal +2/−1
mwc-random.cabal view
@@ -1,5 +1,5 @@ name: mwc-random-version: 0.8.0.1+version: 0.8.0.2 synopsis: Fast, high quality pseudo random number generation description: This package contains code for generating high quality random@@ -17,6 +17,7 @@ license: BSD3 license-file: LICENSE homepage: http://bitbucket.org/bos/mwc-random+bug-reports: http://bitbucket.org/bos/mwc-random/issues author: Bryan O'Sullivan <bos@serpentine.com> maintainer: Bryan O'Sullivan <bos@serpentine.com> copyright: 2009, 2010 Bryan O'Sullivan