hstatistics 0.2.2.10 → 0.2.2.11
raw patch · 3 files changed
+5/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES +3/−0
- hstatistics.cabal +1/−1
- lib/Numeric/Statistics/Surrogate.hs +1/−1
CHANGES view
@@ -78,3 +78,6 @@ 0.2.2.10: remove previous change++0.2.2.11:+ fixed bug in surrogate data sampling
hstatistics.cabal view
@@ -1,5 +1,5 @@ Name: hstatistics-Version: 0.2.2.10+Version: 0.2.2.11 License: BSD3 License-file: LICENSE Copyright: (c) A.V.H. McPhail 2010, 2011
lib/Numeric/Statistics/Surrogate.hs view
@@ -43,7 +43,7 @@ surrogate' _ 0 _ _ = [] surrogate' g n f d = let (g',g'') = split g d' = permute_data g' d- in (f d) : (surrogate' g'' (n-1) f d)+ in (f d) : (surrogate' g'' (n-1) f d') randomList :: StdGen -> Int -> [Int] randomList _ 0 = []