]> www.ginac.de Git - ginac.git/commitdiff
documentation update
authorChristian Bauer <Christian.Bauer@uni-mainz.de>
Tue, 30 Sep 2003 20:23:23 +0000 (20:23 +0000)
committerChristian Bauer <Christian.Bauer@uni-mainz.de>
Tue, 30 Sep 2003 20:23:23 +0000 (20:23 +0000)
NEWS

diff --git a/NEWS b/NEWS
index 819a5dd5be15682137300ac870a3ce90f746a73f..c4300e77295dfe2348338e202eed32b3d3664e02 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,21 @@
 This file records noteworthy changes.
 
+1.1.4 (<date>)
+* Lists and matrices can now be initialized from comma-separated lists of
+  expressions, like this:
+
+    lst l;
+    l = x, 2, y, x+y;
+
+    matrix M(3, 3);
+    M = x, y, 0,
+       -y, x, 0,
+        0, 0, 1;
+
+  This is both faster and produces much smaller code than the old constructors
+  lst(ex, ex, ...) and matrix(unsigned, unsigned, lst), especially in the case
+  of matrices, and is now the recommended way to create these objects.
+
 1.1.3 (22 August 2003)
 * Added new symbolic functions for better integration with nestedsums:
   (multiple) polylogarithm Li(), Nielsen's generalized polylogarithm S(),