summaryrefslogtreecommitdiff
path: root/lib/GSL.hs
blob: d65f8ff1ea8b5a8b64a78b052840e913c8e852bd (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
{- |

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 all the available GSL functions (except those in "LinearAlgebra").

-}

module GSL (
  module GSL.Integration
, module GSL.Differentiation
, module GSL.Fourier
, module GSL.Polynomials
, module GSL.Minimization
, module GSL.Special
, module Complex
) where

import GSL.Integration
import GSL.Differentiation
import GSL.Special
import GSL.Fourier
import GSL.Polynomials
import GSL.Minimization
import Complex
import GSL.Special