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:
M | README.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