summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--CHANGES.md6
-rw-r--r--hmatrix.cabal2
-rw-r--r--reinstall.sh10
4 files changed, 16 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 57380c8..ccb029c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,5 +15,5 @@ doc.sh
15push.sh 15push.sh
16index.html 16index.html
17title.md 17title.md
18reinstall.sh
19 18
19/base-reinstall.sh
diff --git a/CHANGES.md b/CHANGES.md
index b0deee4..173db05 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -3,8 +3,6 @@
3 3
4- Data.Packed.Foreign (additional FFI helpers) 4- Data.Packed.Foreign (additional FFI helpers)
5 5
6- diagBlock
7
8- NFData instance of Matrix 6- NFData instance of Matrix
9 7
10- Unidimensional root finding 8- Unidimensional root finding
@@ -12,6 +10,10 @@
12- In Numeric.LinearAlgebra.Util: 10- In Numeric.LinearAlgebra.Util:
13 pairwise2D, rowOuters, null1, null1sym, size, unitary, mt, (¦), (?), (¿) 11 pairwise2D, rowOuters, null1, null1sym, size, unitary, mt, (¦), (?), (¿)
14 12
13- diagBlock
14
15- meanCov moved to Container
16
150.14.1.0 170.14.1.0
16-------- 18--------
17 19
diff --git a/hmatrix.cabal b/hmatrix.cabal
index 65cdce9..21ed691 100644
--- a/hmatrix.cabal
+++ b/hmatrix.cabal
@@ -21,7 +21,7 @@ Description: Purely functional interface to basic linear algebra
21 . 21 .
22 - "Numeric.LinearAlgebra": everything + instances of standard Haskell numeric classes 22 - "Numeric.LinearAlgebra": everything + instances of standard Haskell numeric classes
23Category: Math 23Category: Math
24tested-with: GHC ==7.4 24tested-with: GHC ==7.6
25 25
26cabal-version: >=1.8 26cabal-version: >=1.8
27 27
diff --git a/reinstall.sh b/reinstall.sh
new file mode 100644
index 0000000..adf3638
--- /dev/null
+++ b/reinstall.sh
@@ -0,0 +1,10 @@
1cabal install --force-reinstalls
2
3cd packages/special
4cabal install --force-reinstalls
5cd ../glpk
6cabal install --force-reinstalls
7cd ../tests
8cabal install --force-reinstalls --enable-tests
9cd ../..
10