diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | hmatrix.cabal | 2 | ||||
-rw-r--r-- | reinstall.sh | 10 |
4 files changed, 16 insertions, 4 deletions
@@ -15,5 +15,5 @@ doc.sh | |||
15 | push.sh | 15 | push.sh |
16 | index.html | 16 | index.html |
17 | title.md | 17 | title.md |
18 | reinstall.sh | ||
19 | 18 | ||
19 | /base-reinstall.sh | ||
@@ -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 | |||
15 | 0.14.1.0 | 17 | 0.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 |
23 | Category: Math | 23 | Category: Math |
24 | tested-with: GHC ==7.4 | 24 | tested-with: GHC ==7.6 |
25 | 25 | ||
26 | cabal-version: >=1.8 | 26 | cabal-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 @@ | |||
1 | cabal install --force-reinstalls | ||
2 | |||
3 | cd packages/special | ||
4 | cabal install --force-reinstalls | ||
5 | cd ../glpk | ||
6 | cabal install --force-reinstalls | ||
7 | cd ../tests | ||
8 | cabal install --force-reinstalls --enable-tests | ||
9 | cd ../.. | ||
10 | |||