diff options
Diffstat (limited to 'lib/Data/Packed/Development.hs')
-rw-r--r-- | lib/Data/Packed/Development.hs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/Data/Packed/Development.hs b/lib/Data/Packed/Development.hs deleted file mode 100644 index 471e560..0000000 --- a/lib/Data/Packed/Development.hs +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | |||
2 | ----------------------------------------------------------------------------- | ||
3 | -- | | ||
4 | -- Module : Data.Packed.Development | ||
5 | -- Copyright : (c) Alberto Ruiz 2009 | ||
6 | -- License : GPL | ||
7 | -- | ||
8 | -- Maintainer : Alberto Ruiz <aruiz@um.es> | ||
9 | -- Stability : provisional | ||
10 | -- Portability : portable | ||
11 | -- | ||
12 | -- The library can be easily extended with additional foreign functions | ||
13 | -- using the tools in this module. Illustrative usage examples can be found | ||
14 | -- in the @examples\/devel@ folder included in the package. | ||
15 | -- | ||
16 | ----------------------------------------------------------------------------- | ||
17 | {-# OPTIONS_HADDOCK hide #-} | ||
18 | |||
19 | module Data.Packed.Development ( | ||
20 | createVector, createMatrix, | ||
21 | vec, mat, | ||
22 | app1, app2, app3, app4, | ||
23 | app5, app6, app7, app8, app9, app10, | ||
24 | MatrixOrder(..), orderOf, cmat, fmat, | ||
25 | matrixFromVector, | ||
26 | unsafeFromForeignPtr, | ||
27 | unsafeToForeignPtr, | ||
28 | check, (//), | ||
29 | at', atM' | ||
30 | ) where | ||
31 | |||
32 | import Data.Packed.Internal | ||