hmatrix-gsl-stats 0.1.2.10 → 0.1.2.11
raw patch · 3 files changed
+9/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES +3/−0
- hmatrix-gsl-stats.cabal +1/−1
- lib/Numeric/GSL/Statistics.hs +5/−5
CHANGES view
@@ -51,3 +51,6 @@ 0.1.2.10: hmatrix now has find, fix Histogram(2D)++0.1.2.11:+ fixed indentation that prevented compilation with ghc-7.2
hmatrix-gsl-stats.cabal view
@@ -1,5 +1,5 @@ Name: hmatrix-gsl-stats-Version: 0.1.2.10+Version: 0.1.2.11 License: GPL License-file: LICENSE Copyright: (c) A.V.H. McPhail 2010, 2011
lib/Numeric/GSL/Statistics.hs view
@@ -60,16 +60,16 @@ ----------------------------------------------------------------------------- getD1 f s v = unsafePerformIO $ do- alloca $ \r -> do+ alloca $ \r -> do app1 (f r) vec v s r' <- peek r return r' getD2 f s v w = unsafePerformIO $ do- alloca $ \r -> do- app2 (f r) vec v vec w s- r' <- peek r- return r'+ alloca $ \r -> do+ app2 (f r) vec v vec w s+ r' <- peek r+ return r' -----------------------------------------------------------------------------