hmatrix-gsl 0.18.2.0 → 0.19.0.0
raw patch · 12 files changed
+36/−15 lines, 12 files
Files
- hmatrix-gsl.cabal +11/−15
- src/Graphics/Plot.hs +2/−0
- src/Numeric/GSL/Fitting.hs +2/−0
- src/Numeric/GSL/Fourier.hs +2/−0
- src/Numeric/GSL/Integration.hs +2/−0
- src/Numeric/GSL/Internal.hs +3/−0
- src/Numeric/GSL/Interpolation.hs +2/−0
- src/Numeric/GSL/LinearAlgebra.hs +3/−0
- src/Numeric/GSL/Minimization.hs +2/−0
- src/Numeric/GSL/ODE.hs +2/−0
- src/Numeric/GSL/Root.hs +2/−0
- src/Numeric/GSL/Vector.hs +3/−0
hmatrix-gsl.cabal view
@@ -1,22 +1,19 @@ Name: hmatrix-gsl-Version: 0.18.2.0-License: GPL-License-file: LICENSE-Author: Alberto Ruiz-Maintainer: Alberto Ruiz <aruiz@um.es>-Stability: provisional-Homepage: https://github.com/albertoruiz/hmatrix+Version: 0.19.0.0 Synopsis: Numerical computation Description: Purely functional interface to selected numerical computations, internally implemented using GSL.-+Homepage: https://github.com/albertoruiz/hmatrix+license: GPL-3+license-file: LICENSE+Author: Alberto Ruiz+Maintainer: Alberto Ruiz <aruiz@um.es>+Stability: provisional Category: Math-tested-with: GHC ==7.8--cabal-version: >=1.8- build-type: Simple+cabal-version: >=1.18 + extra-source-files: src/Numeric/GSL/gsl-ode.c flag onlygsl@@ -33,9 +30,6 @@ Build-Depends: base<5, hmatrix>=0.18, array, vector, process, random -- Extensions: ForeignFunctionInterface- hs-source-dirs: src Exposed-modules: Numeric.GSL.Differentiation, Numeric.GSL.Integration,@@ -97,6 +91,8 @@ extra-libraries: gsl else pkgconfig-depends: gsl++ default-language: Haskell2010 source-repository head
src/Graphics/Plot.hs view
@@ -1,3 +1,5 @@+{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ ----------------------------------------------------------------------------- -- | -- Module : Graphics.Plot
src/Numeric/GSL/Fitting.hs view
@@ -1,6 +1,8 @@ {-# LANGUAGE CPP #-} {-# LANGUAGE FlexibleContexts #-} +{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ {- | Module : Numeric.GSL.Fitting Copyright : (c) Alberto Ruiz 2010
src/Numeric/GSL/Fourier.hs view
@@ -1,5 +1,7 @@ {-# LANGUAGE TypeFamilies #-} +{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ {- | Module : Numeric.GSL.Fourier Copyright : (c) Alberto Ruiz 2006
src/Numeric/GSL/Integration.hs view
@@ -1,3 +1,5 @@+{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ {- | Module : Numeric.GSL.Integration Copyright : (c) Alberto Ruiz 2006
src/Numeric/GSL/Internal.hs view
@@ -1,5 +1,8 @@ {-# LANGUAGE FlexibleContexts #-} +{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+{-# OPTIONS_GHC -fno-warn-unused-top-binds #-}+ -- | -- Module : Numeric.GSL.Internal -- Copyright : (c) Alberto Ruiz 2009
src/Numeric/GSL/Interpolation.hs view
@@ -1,5 +1,7 @@ {-# LANGUAGE MagicHash, UnboxedTuples #-} +{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ {- | Module : Numeric.GSL.Interpolation Copyright : (c) Matthew Peddie 2015
src/Numeric/GSL/LinearAlgebra.hs view
@@ -1,3 +1,6 @@+{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+{-# OPTIONS_GHC -fno-warn-unused-top-binds #-}+ ----------------------------------------------------------------------------- -- | -- Module : Numeric.GSL.LinearAlgebra
src/Numeric/GSL/Minimization.hs view
@@ -1,3 +1,5 @@+{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ {-# LANGUAGE FlexibleContexts #-}
src/Numeric/GSL/ODE.hs view
@@ -1,5 +1,7 @@ {-# LANGUAGE FlexibleContexts #-} +{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+{-# OPTIONS_GHC -fno-warn-unused-top-binds #-} {- | Module : Numeric.GSL.ODE
src/Numeric/GSL/Root.hs view
@@ -1,5 +1,7 @@ {-# LANGUAGE FlexibleContexts #-} +{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+ {- | Module : Numeric.GSL.Root Copyright : (c) Alberto Ruiz 2009
src/Numeric/GSL/Vector.hs view
@@ -1,3 +1,6 @@+{-# OPTIONS_GHC -fno-warn-missing-signatures #-}+{-# OPTIONS_GHC -fno-warn-unused-top-binds #-}+ ----------------------------------------------------------------------------- -- | -- Module : Numeric.GSL.Vector