From: Guido Kanschat Date: Fri, 1 Feb 2002 13:59:03 +0000 (+0000) Subject: backward compatibility finite elements removed & exists in sparsity pattern X-Git-Tag: v8.0.0~18388 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef642e0b12f7aca009a893ef8b072792abb6d3b1;p=dealii.git backward compatibility finite elements removed & exists in sparsity pattern git-svn-id: https://svn.dealii.org/trunk@5447 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/2001/c-3-2.html b/deal.II/doc/news/2001/c-3-2.html index d6d9c0b9a2..4be2d1770c 100644 --- a/deal.II/doc/news/2001/c-3-2.html +++ b/deal.II/doc/news/2001/c-3-2.html @@ -231,6 +231,15 @@ documentation, etc.

lac

    +
  1. + + Improved: all sparsity pattern classes have a function exists, allowing you to check whether a + certain index pair has been allocated in the pattern. +
    + (GK 2002/02/01) +

    +
  2. Fixed: Allocation of temporary vectors in FilteredMatrix::allocate_tmp_vector @@ -331,12 +340,27 @@ documentation, etc.

    deal.II

      +
    1. + Changed: The classes FEQ1-FEQ4, FEDG_Q1FEDG_Q4 + as well as the files with their definitions, + fe/fe_lib.lagrange.h and fe/fe_lib.dg.h + ceased to exist. They had been left in for backward + compatibility in an earlier version, but their existence is + more confusing than helpful. Please change your code to use the + classes FE_Q and FE_DGQ, respectively. +
      + (GK 2002/02/01) +

      +
    2. New: The FilteredIterator class provides a view on ranges of iterators by iterating over only those objects that satisfy a certain predicate.
      - (GK 2002/01/07) + (WB 2002/01/07)