packages feed

fft 0.1.6 → 0.1.7

raw patch · 1 files changed

+13/−3 lines, 1 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Math.FFT.Base: plan_guru_dft :: (FFTWReal a) => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr (Complex a) -> Ptr (Complex a) -> FFTWSign -> FFTWFlag -> IO Plan
+ Math.FFT.Base: plan_guru_dft :: FFTWReal a => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr (Complex a) -> Ptr (Complex a) -> FFTWSign -> FFTWFlag -> IO Plan
- Math.FFT.Base: plan_guru_dft_c2r :: (FFTWReal a) => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr (Complex a) -> Ptr a -> FFTWFlag -> IO Plan
+ Math.FFT.Base: plan_guru_dft_c2r :: FFTWReal a => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr (Complex a) -> Ptr a -> FFTWFlag -> IO Plan
- Math.FFT.Base: plan_guru_dft_r2c :: (FFTWReal a) => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr a -> Ptr (Complex a) -> FFTWFlag -> IO Plan
+ Math.FFT.Base: plan_guru_dft_r2c :: FFTWReal a => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr a -> Ptr (Complex a) -> FFTWFlag -> IO Plan
- Math.FFT.Base: plan_guru_r2r :: (FFTWReal a) => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr a -> Ptr a -> Ptr FFTWKind -> FFTWFlag -> IO Plan
+ Math.FFT.Base: plan_guru_r2r :: FFTWReal a => CInt -> Ptr IODim -> CInt -> Ptr IODim -> Ptr a -> Ptr a -> Ptr FFTWKind -> FFTWFlag -> IO Plan

Files

fft.cabal view
@@ -1,5 +1,5 @@ name:                fft-version:             0.1.6+version:             0.1.7 synopsis:            Bindings to the FFTW library. description:                      Bindings to the FFTW library.@@ -14,11 +14,20 @@ author:              Jed Brown maintainer:          <jed@59A2.org> build-type:	     Simple-cabal-version:       >= 1.2+cabal-version:       >= 1.6  flag splitBase flag base4 +source-repository this+  tag:         0.1.7+  type:        darcs+  location:    http://code.haskell.org/fft/++source-repository head+  type:        darcs+  location:    http://code.haskell.org/fft/+ library   if flag(splitBase)     build-depends: base >= 3, array, carray, storable-complex, ix-shapable@@ -31,6 +40,7 @@    exposed-modules: Math.FFT                    Math.FFT.Base-  extra-libraries: fftw3+  pkgconfig-depends:+                   fftw3 >=3.3 && <4   extensions:      ForeignFunctionInterface   ghc-options:     -Wall