summaryrefslogtreecommitdiff
path: root/lib/GSL.hs
blob: ac3a2e862611683a759c923ca2cc9f7b76497d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{- |

Module      :  GSL
Copyright   :  (c) Alberto Ruiz 2006-7
License     :  GPL-style

Maintainer  :  Alberto Ruiz (aruiz at um dot es)
Stability   :  provisional
Portability :  uses -fffi and -fglasgow-exts

This module reexports the basic functionality and a collection of utilities (old interface)

-}

module GSL (

module Data.Packed.Vector,
module Data.Packed.Matrix,
module Data.Packed.Tensor,
module LinearAlgebra.Algorithms,
module LAPACK,
module GSL.Integration,
module GSL.Differentiation,
module GSL.Special,
module GSL.Fourier,
module GSL.Polynomials,
module GSL.Minimization,
module Data.Packed.Plot,
module GSL.Compat

) where

import Data.Packed.Vector
import Data.Packed.Matrix
import Data.Packed.Tensor
import LinearAlgebra.Algorithms
import LAPACK
import GSL.Integration
import GSL.Differentiation
import GSL.Special
import GSL.Fourier
import GSL.Polynomials
import GSL.Minimization
import Data.Packed.Plot
import GSL.Compat