packages feed

adaptive-cubature 0.1.0.0 → 0.1.1.0

raw patch · 3 files changed

+7/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Numerical.Cubature: Result :: Double -> Double -> Result
+ Numerical.Cubature: [_error] :: Result -> Double
+ Numerical.Cubature: [_integral] :: Result -> Double
+ Numerical.Cubature: data Result

Files

CHANGELOG.md view
@@ -3,3 +3,8 @@ ## 0.1.0.0 - 2023-09-15  First release.+++## 0.1.1.0 - 2023-09-16++Exported the data type `Result`.
adaptive-cubature.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                adaptive-cubature-version:             0.1.0.0+version:             0.1.1.0 synopsis:            Multidimensional integration description:         Adaptive integration of a multivariate function on a hyperrectangle. homepage:            https://github.com/stla/adaptive-cubature#readme
src/Numerical/Cubature.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE ForeignFunctionInterface #-} module Numerical.Cubature-  (cubature)+  (cubature, Result(..))   where import           Foreign.C.Types       (CUInt(..)) import           Foreign.Marshal.Alloc (free, mallocBytes)