diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-08 08:56:43 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-08 08:56:43 +0200 |
commit | d558f5165e7e7f4daffadae1197e53618727971d (patch) | |
tree | bfdb293eca4f2e7a8ae5e7230dd244975e3c3a27 /packages/hmatrix/src | |
parent | 1925c123d7d8184a1d2ddc0a413e0fd2776e1083 (diff) |
moved Random
Diffstat (limited to 'packages/hmatrix/src')
-rw-r--r-- | packages/hmatrix/src/Numeric/Container.hs | 2 | ||||
-rw-r--r-- | packages/hmatrix/src/Numeric/Random.hs (renamed from packages/hmatrix/src/Data/Packed/Random.hs) | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/packages/hmatrix/src/Numeric/Container.hs b/packages/hmatrix/src/Numeric/Container.hs index 7e46147..ff649b7 100644 --- a/packages/hmatrix/src/Numeric/Container.hs +++ b/packages/hmatrix/src/Numeric/Container.hs | |||
@@ -71,7 +71,7 @@ import Numeric.Chain | |||
71 | import Numeric.IO | 71 | import Numeric.IO |
72 | import Data.Complex | 72 | import Data.Complex |
73 | import Numeric.LinearAlgebra.Algorithms(Field,linearSolveSVD) | 73 | import Numeric.LinearAlgebra.Algorithms(Field,linearSolveSVD) |
74 | import Data.Packed.Random | 74 | import Numeric.Random |
75 | 75 | ||
76 | ------------------------------------------------------------------ | 76 | ------------------------------------------------------------------ |
77 | 77 | ||
diff --git a/packages/hmatrix/src/Data/Packed/Random.hs b/packages/hmatrix/src/Numeric/Random.hs index e8b0268..936c777 100644 --- a/packages/hmatrix/src/Data/Packed/Random.hs +++ b/packages/hmatrix/src/Numeric/Random.hs | |||
@@ -1,17 +1,17 @@ | |||
1 | ----------------------------------------------------------------------------- | 1 | ----------------------------------------------------------------------------- |
2 | -- | | 2 | -- | |
3 | -- Module : Data.Packed.Vector | 3 | -- Module : Numeric.Random |
4 | -- Copyright : (c) Alberto Ruiz 2009 | 4 | -- Copyright : (c) Alberto Ruiz 2009-14 |
5 | -- License : GPL | 5 | -- License : GPL |
6 | -- | 6 | -- |
7 | -- Maintainer : Alberto Ruiz <aruiz@um.es> | 7 | -- Maintainer : Alberto Ruiz |
8 | -- Stability : provisional | 8 | -- Stability : provisional |
9 | -- | 9 | -- |
10 | -- Random vectors and matrices. | 10 | -- Random vectors and matrices. |
11 | -- | 11 | -- |
12 | ----------------------------------------------------------------------------- | 12 | ----------------------------------------------------------------------------- |
13 | 13 | ||
14 | module Data.Packed.Random ( | 14 | module Numeric.Random ( |
15 | Seed, | 15 | Seed, |
16 | RandDist(..), | 16 | RandDist(..), |
17 | randomVector, | 17 | randomVector, |