flat-mcmc

Painless, efficient, general-purpose sampling from continuous distributions.
Log | Files | Refs | README | LICENSE

commit e763573b01a8bc4bc2d4aa42a28379a01d452eae
parent 64e98a5fb49e9fe3226ea4c01faabd8906d1532d
Author: Jared Tobin <jared@jtobin.ca>
Date:   Tue,  1 Nov 2016 08:29:08 +1300

Fix README typo. [ci skip]

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -32,7 +32,7 @@ import qualified Data.Vector.Unboxed as U (Vector, toList, fromList) import qualified Data.Vector as V (fromList) rosenbrock :: Particle -> Double -rosenbrock xs = negate (5 *(x1 - x0 ^ 2) ^ 2 + 0.05 * (1 - x0) ^ 2) where +rosenbrock xs = negate (5 * (x1 - x0 ^ 2) ^ 2 + 0.05 * (1 - x0) ^ 2) where [x0, x1] = U.toList xs ensemble :: Ensemble