summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-05-08 08:56:43 +0200
committerAlberto Ruiz <aruiz@um.es>2014-05-08 08:56:43 +0200
commitd558f5165e7e7f4daffadae1197e53618727971d (patch)
treebfdb293eca4f2e7a8ae5e7230dd244975e3c3a27 /packages
parent1925c123d7d8184a1d2ddc0a413e0fd2776e1083 (diff)
moved Random
Diffstat (limited to 'packages')
-rw-r--r--packages/hmatrix/hmatrix.cabal2
-rw-r--r--packages/hmatrix/src/Numeric/Container.hs2
-rw-r--r--packages/hmatrix/src/Numeric/Random.hs (renamed from packages/hmatrix/src/Data/Packed/Random.hs)8
3 files changed, 6 insertions, 6 deletions
diff --git a/packages/hmatrix/hmatrix.cabal b/packages/hmatrix/hmatrix.cabal
index b029dc9..afd678f 100644
--- a/packages/hmatrix/hmatrix.cabal
+++ b/packages/hmatrix/hmatrix.cabal
@@ -115,7 +115,7 @@ library
115 Data.Packed.Internal.Signatures, 115 Data.Packed.Internal.Signatures,
116 Data.Packed.Internal.Vector, 116 Data.Packed.Internal.Vector,
117 Data.Packed.Internal.Matrix, 117 Data.Packed.Internal.Matrix,
118 Data.Packed.Random, 118 Numeric.Random,
119 Numeric.GSL.Internal, 119 Numeric.GSL.Internal,
120 Numeric.GSL.Vector, 120 Numeric.GSL.Vector,
121 Numeric.Conversion, 121 Numeric.Conversion,
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
71import Numeric.IO 71import Numeric.IO
72import Data.Complex 72import Data.Complex
73import Numeric.LinearAlgebra.Algorithms(Field,linearSolveSVD) 73import Numeric.LinearAlgebra.Algorithms(Field,linearSolveSVD)
74import Data.Packed.Random 74import 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
14module Data.Packed.Random ( 14module Numeric.Random (
15 Seed, 15 Seed,
16 RandDist(..), 16 RandDist(..),
17 randomVector, 17 randomVector,