diff options
Diffstat (limited to 'packages/hmatrix/src/Numeric/GSL.hs')
-rw-r--r-- | packages/hmatrix/src/Numeric/GSL.hs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/packages/hmatrix/src/Numeric/GSL.hs b/packages/hmatrix/src/Numeric/GSL.hs deleted file mode 100644 index 61b8d7b..0000000 --- a/packages/hmatrix/src/Numeric/GSL.hs +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | {- | | ||
2 | |||
3 | Module : Numeric.GSL | ||
4 | Copyright : (c) Alberto Ruiz 2006-14 | ||
5 | License : GPL | ||
6 | |||
7 | Maintainer : Alberto Ruiz | ||
8 | Stability : provisional | ||
9 | |||
10 | This module reexports all available GSL functions. | ||
11 | |||
12 | The GSL special functions are in the separate package hmatrix-special. | ||
13 | |||
14 | -} | ||
15 | |||
16 | module Numeric.GSL ( | ||
17 | module Numeric.GSL.Integration | ||
18 | , module Numeric.GSL.Differentiation | ||
19 | , module Numeric.GSL.Fourier | ||
20 | , module Numeric.GSL.Polynomials | ||
21 | , module Numeric.GSL.Minimization | ||
22 | , module Numeric.GSL.Root | ||
23 | , module Numeric.GSL.ODE | ||
24 | , module Numeric.GSL.Fitting | ||
25 | , module Data.Complex | ||
26 | , setErrorHandlerOff | ||
27 | ) where | ||
28 | |||
29 | import Numeric.GSL.Integration | ||
30 | import Numeric.GSL.Differentiation | ||
31 | import Numeric.GSL.Fourier | ||
32 | import Numeric.GSL.Polynomials | ||
33 | import Numeric.GSL.Minimization | ||
34 | import Numeric.GSL.Root | ||
35 | import Numeric.GSL.ODE | ||
36 | import Numeric.GSL.Fitting | ||
37 | import Data.Complex | ||
38 | |||
39 | |||
40 | -- | This action removes the GSL default error handler (which aborts the program), so that | ||
41 | -- GSL errors can be handled by Haskell (using Control.Exception) and ghci doesn't abort. | ||
42 | foreign import ccall unsafe "GSL/gsl-aux.h no_abort_on_error" setErrorHandlerOff :: IO () | ||
43 | |||