From: Timo Heister Date: Mon, 21 Dec 2015 18:10:31 +0000 (-0500) Subject: add changelog entries X-Git-Tag: v8.4.0-rc2~139^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62c32f694692e08a381ef162063a267085f60ba9;p=dealii.git add changelog entries --- diff --git a/doc/news/changes.h b/doc/news/changes.h index bb3d577281..a96a610d67 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -513,6 +513,12 @@ inconvenience this causes.
    +
  1. Fixed: Now all members in the class SparseMatrixEZ are initialized + correctly in the constructor. This was causing random crashes before. +
    + (Timo Heister, 2015/12/21) +
  2. +
  3. New: There is now a new class ArrayView that presents a chunk of memory as if it was an array of fixed size. This is eventually going to replace the VectorSlice class which suffers from the defect that @@ -526,6 +532,12 @@ inconvenience this causes. (Wolfgang Bangerth, 2015/12/20)
  4. +
  5. Fixed: Handling of constraints in step-26 was incorrect (hanging nodes + were condensed twice) leading to garbage solutions. This is now fixed. +
    + (Timo Heister, 2015/12/20) +
  6. +
  7. Fixed: The implementation of ShiftedMatrixGeneralized contained several errors that prevented it from being compiled. These have now been fixed.