diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-06-19 13:55:39 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-06-19 13:55:39 +0200 |
commit | db50bc11dafa6834a4367427156306674063ed6b (patch) | |
tree | 721e9d0235168be1d0ebb2bd1dd254a66251f274 /packages/base/src/Numeric | |
parent | 7f9c7b5adf8f05653d15f19358f41c1916e8db70 (diff) |
removed the annoying appN adapter for the foreign functions.
replaced by several overloaded app variants in the style of
the module Internal.Foreign contributed by Mike Ledger.
Diffstat (limited to 'packages/base/src/Numeric')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Data.hs | 2 | ||||
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Devel.hs | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Data.hs b/packages/base/src/Numeric/LinearAlgebra/Data.hs index 2a45771..d2843c2 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Data.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Data.hs | |||
@@ -104,7 +104,7 @@ import Internal.Element | |||
104 | import Internal.IO | 104 | import Internal.IO |
105 | import Internal.Numeric | 105 | import Internal.Numeric |
106 | import Internal.Container | 106 | import Internal.Container |
107 | import Internal.Util hiding ((&),(#)) | 107 | import Internal.Util hiding ((&)) |
108 | import Data.Complex | 108 | import Data.Complex |
109 | import Internal.Sparse | 109 | import Internal.Sparse |
110 | import Internal.Modular | 110 | import Internal.Modular |
diff --git a/packages/base/src/Numeric/LinearAlgebra/Devel.hs b/packages/base/src/Numeric/LinearAlgebra/Devel.hs index db4236b..f18d35b 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Devel.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Devel.hs | |||
@@ -23,14 +23,12 @@ module Numeric.LinearAlgebra.Devel( | |||
23 | -- | See @examples/devel@ in the repository. | 23 | -- | See @examples/devel@ in the repository. |
24 | 24 | ||
25 | createVector, createMatrix, | 25 | createVector, createMatrix, |
26 | vec, mat, omat, | 26 | TransArray(..), |
27 | app1, app2, app3, app4, | ||
28 | app5, app6, app7, app8, app9, app10, | ||
29 | MatrixOrder(..), orderOf, cmat, fmat, | 27 | MatrixOrder(..), orderOf, cmat, fmat, |
30 | matrixFromVector, | 28 | matrixFromVector, |
31 | unsafeFromForeignPtr, | 29 | unsafeFromForeignPtr, |
32 | unsafeToForeignPtr, | 30 | unsafeToForeignPtr, |
33 | check, (//), | 31 | check, (//), (#|), |
34 | at', atM', fi, ti, | 32 | at', atM', fi, ti, |
35 | 33 | ||
36 | -- * ST | 34 | -- * ST |