From: Martin Kronbichler Date: Fri, 31 Jul 2015 06:43:44 +0000 (+0200) Subject: List changes from #1215 X-Git-Tag: v8.4.0-rc2~697^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cd0c6e7ab97cbd525b734767222b65a285432b0;p=dealii.git List changes from #1215 --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 7b2de5b727..fea0a7ba6d 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -89,6 +89,19 @@ inconvenience this causes.
    +
  1. Improved: The conversion Epetra_Map -> IndexSet is now an O(1) + operation for contiguous index ranges, improving over the old O(N) behavior. +
    + (Martin Kronbichler, 2015/07/30) +
  2. + +
  3. Changed: The initialization methods of TrilinosWrappers::SparseMatrix, + TrilinosWrappers::BlockSparseMatrix, TrilinosWrappers::SparsityPattern, and + TrilinosWrappers::BlockSparsityPattern with Epetra_Map arguments have been + marked as deprecated. Use the functions with IndexSet argument instead. +
    + (Martin Kronbichler, Luca Heltai, 2015/07/30) +
  4. New: FESystem now does some work in parallel if your system has multiple processors.