packages feed

declarative 0.2.1 → 0.2.2

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

+ Numeric.MCMC: type family PrimState (m :: * -> *) :: *;
+ Numeric.MCMC: }
- Numeric.MCMC: class Monad m => PrimMonad (m :: * -> *) where type family PrimState (m :: * -> *) :: *
+ Numeric.MCMC: class Monad m => PrimMonad (m :: * -> *) where type PrimState (m :: * -> *) :: * where {

Files

declarative.cabal view
@@ -1,5 +1,5 @@ name:                declarative-version:             0.2.1+version:             0.2.2 synopsis:            DIY Markov Chains. homepage:            http://github.com/jtobin/declarative license:             MIT
lib/Numeric/MCMC.hs view
@@ -56,7 +56,7 @@ -- >     (sampleT (slice 2.0) (slice 3.0)) -- > -- > main :: IO ()--- > main = withSystemRandom . asGenIO $ mcmc 10000 [0, 0] rosenbrock transition+-- > main = withSystemRandom . asGenIO $ mcmc 10000 [0, 0] transition rosenbrock -- -- See the attached test suite for other examples.