summaryrefslogtreecommitdiff
path: root/packages/base
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base')
-rw-r--r--packages/base/hmatrix-base.cabal6
-rw-r--r--packages/base/src/Data/Packed/Development.hs3
-rw-r--r--packages/base/src/Data/Packed/Vector.hs3
-rw-r--r--packages/base/src/Numeric/LinearAlgebra/LAPACK.hs (renamed from packages/base/src/Numeric/LAPACK.hs)4
4 files changed, 9 insertions, 7 deletions
diff --git a/packages/base/hmatrix-base.cabal b/packages/base/hmatrix-base.cabal
index 0413d4a..bd356df 100644
--- a/packages/base/hmatrix-base.cabal
+++ b/packages/base/hmatrix-base.cabal
@@ -7,7 +7,8 @@ Maintainer: Alberto Ruiz
7Stability: provisional 7Stability: provisional
8Homepage: https://github.com/albertoruiz/hmatrix 8Homepage: https://github.com/albertoruiz/hmatrix
9Synopsis: Numeric Linear Algebra 9Synopsis: Numeric Linear Algebra
10Description: Numeric Linear Algebra 10Description: Basic support for dense linear algebra
11 internally implemented using BLAS and LAPACK.
11Category: Math 12Category: Math
12tested-with: GHC==7.8 13tested-with: GHC==7.8
13 14
@@ -35,7 +36,7 @@ library
35 Data.Packed.ST, 36 Data.Packed.ST,
36 Data.Packed.Development, 37 Data.Packed.Development,
37 Numeric.Conversion 38 Numeric.Conversion
38 Numeric.LAPACK 39 Numeric.LinearAlgebra.LAPACK
39 40
40 other-modules: Data.Packed.Internal, 41 other-modules: Data.Packed.Internal,
41 Data.Packed.Internal.Common, 42 Data.Packed.Internal.Common,
@@ -52,7 +53,6 @@ library
52 ghc-options: -Wall 53 ghc-options: -Wall
53 -fno-warn-missing-signatures 54 -fno-warn-missing-signatures
54 -fno-warn-orphans 55 -fno-warn-orphans
55-- -fno-warn-unused-binds
56 56
57 cc-options: -O4 -msse2 -Wall 57 cc-options: -O4 -msse2 -Wall
58 58
diff --git a/packages/base/src/Data/Packed/Development.hs b/packages/base/src/Data/Packed/Development.hs
index 9350acb..6dfd551 100644
--- a/packages/base/src/Data/Packed/Development.hs
+++ b/packages/base/src/Data/Packed/Development.hs
@@ -24,7 +24,8 @@ module Data.Packed.Development (
24 unsafeFromForeignPtr, 24 unsafeFromForeignPtr,
25 unsafeToForeignPtr, 25 unsafeToForeignPtr,
26 check, (//), 26 check, (//),
27 at', atM', fi, table 27 at', atM', fi, table,
28 conformMs, conformVs, shSize, splitEvery
28) where 29) where
29 30
30import Data.Packed.Internal 31import Data.Packed.Internal
diff --git a/packages/base/src/Data/Packed/Vector.hs b/packages/base/src/Data/Packed/Vector.hs
index 653a257..a8f6bb1 100644
--- a/packages/base/src/Data/Packed/Vector.hs
+++ b/packages/base/src/Data/Packed/Vector.hs
@@ -23,7 +23,8 @@ module Data.Packed.Vector (
23 subVector, takesV, vjoin, join, 23 subVector, takesV, vjoin, join,
24 mapVector, mapVectorWithIndex, zipVector, zipVectorWith, unzipVector, unzipVectorWith, 24 mapVector, mapVectorWithIndex, zipVector, zipVectorWith, unzipVector, unzipVectorWith,
25 mapVectorM, mapVectorM_, mapVectorWithIndexM, mapVectorWithIndexM_, 25 mapVectorM, mapVectorM_, mapVectorWithIndexM, mapVectorWithIndexM_,
26 foldLoop, foldVector, foldVectorG, foldVectorWithIndex 26 foldLoop, foldVector, foldVectorG, foldVectorWithIndex,
27 stepD, stepF, condD, condF, conjugateC, conjugateQ
27) where 28) where
28 29
29import Data.Packed.Internal.Vector 30import Data.Packed.Internal.Vector
diff --git a/packages/base/src/Numeric/LAPACK.hs b/packages/base/src/Numeric/LinearAlgebra/LAPACK.hs
index 08cd759..af0c744 100644
--- a/packages/base/src/Numeric/LAPACK.hs
+++ b/packages/base/src/Numeric/LinearAlgebra/LAPACK.hs
@@ -1,6 +1,6 @@
1----------------------------------------------------------------------------- 1-----------------------------------------------------------------------------
2-- | 2-- |
3-- Module : Numeric.LAPACK 3-- Module : Numeric.LinearAlgebra.LAPACK
4-- Copyright : (c) Alberto Ruiz 2006-14 4-- Copyright : (c) Alberto Ruiz 2006-14
5-- License : BSD3 5-- License : BSD3
6-- 6--
@@ -11,7 +11,7 @@
11-- 11--
12----------------------------------------------------------------------------- 12-----------------------------------------------------------------------------
13 13
14module Numeric.LAPACK ( 14module Numeric.LinearAlgebra.LAPACK (
15 -- * Matrix product 15 -- * Matrix product
16 multiplyR, multiplyC, multiplyF, multiplyQ, 16 multiplyR, multiplyC, multiplyF, multiplyQ,
17 -- * Linear systems 17 -- * Linear systems