diff options
Diffstat (limited to 'packages/base/CHANGELOG')
-rw-r--r-- | packages/base/CHANGELOG | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/base/CHANGELOG b/packages/base/CHANGELOG index c137285..581d2ac 100644 --- a/packages/base/CHANGELOG +++ b/packages/base/CHANGELOG | |||
@@ -1,3 +1,33 @@ | |||
1 | 0.17.0.0 | ||
2 | -------- | ||
3 | |||
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 | ||
12 | |||
13 | * remap, more general cond, sortIndex | ||
14 | |||
15 | * Experimental support of type safe modular arithmetic, including linear | ||
16 | system solver and LU factorization | ||
17 | |||
18 | * Elementary row operations and inplace matrix slice products in the ST monad | ||
19 | |||
20 | * Improved development tools. | ||
21 | |||
22 | * Old compatibility modules removed, simpler organization of internal modules | ||
23 | |||
24 | * unitary, pairwiseD2, tr' | ||
25 | |||
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. | ||
30 | |||
1 | 0.16.1.0 | 31 | 0.16.1.0 |
2 | -------- | 32 | -------- |
3 | 33 | ||