summaryrefslogtreecommitdiff
path: root/packages/base/CHANGELOG
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base/CHANGELOG')
-rw-r--r--packages/base/CHANGELOG26
1 files changed, 17 insertions, 9 deletions
diff --git a/packages/base/CHANGELOG b/packages/base/CHANGELOG
index 0336a28..581d2ac 100644
--- a/packages/base/CHANGELOG
+++ b/packages/base/CHANGELOG
@@ -1,24 +1,32 @@
10.17.0.0 10.17.0.0
2-------- 2--------
3 3
4 * improved matrix extraction (??) and rectangular matrix slices without data copy 4 * eigSH, chol, and other functions that work with Hermitian or symmetric matrices
5 now take a special "Herm" argument that can be created by means of "sym"
6 or "mTm". The unchecked versions of those functions have been removed and we
7 use "trustSym" to create the Herm type when the matrix is known to be Hermitian/symmetric.
8
9 * Improved matrix extraction (??) and rectangular matrix slices without data copy
10
11 * Basic support of Int32 and Int64 elements
5 12
6 * basic support of Int32 and Int64 elements
7
8 * remap, more general cond, sortIndex 13 * remap, more general cond, sortIndex
9 14
10 * experimental support of type safe modular arithmetic, including linear 15 * Experimental support of type safe modular arithmetic, including linear
11 systems and lu factorization 16 system solver and LU factorization
12 17
13 * elementary row operations and inplace matrix slice products in the ST monad 18 * Elementary row operations and inplace matrix slice products in the ST monad
14 19
15 * Improved development tools. 20 * Improved development tools.
16 21
17 * old compatibility modules removed, simpler organization of internal modules 22 * Old compatibility modules removed, simpler organization of internal modules
18 23
19 * unitary, pairwiseD2, tr' 24 * unitary, pairwiseD2, tr'
20 25
21 * ldlPacked, ldlSolve 26 * ldlPacked, ldlSolve for indefinite symmetric systems (apparently not faster
27 than the general solver based on the LU)
28
29 * LU, LDL, and QR types for these compact decompositions.
22 30
230.16.1.0 310.16.1.0
24-------- 32--------