packages feed

declarative 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+2/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

declarative.cabal view
@@ -1,5 +1,5 @@ name:                declarative-version:             0.1.0.0+version:             0.1.0.1 synopsis:            DIY Markov Chains. homepage:            http://github.com/jtobin/declarative license:             MIT
test/Rosenbrock.hs view
@@ -3,7 +3,6 @@ module Main where  import Numeric.MCMC-import Data.Sampling.Types  target :: [Double] -> Double target [x0, x1] = negate (5  *(x1 - x0 ^ 2) ^ 2 + 0.05 * (1 - x0) ^ 2)@@ -18,5 +17,5 @@     (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