From: hartmann Date: Fri, 1 Feb 2002 14:14:34 +0000 (+0000) Subject: backward compatibility finite elements removed & exists in sparsity pattern (GK)... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0446042f6ef7b25c8529167619351d1c167c193e;p=dealii-svn.git backward compatibility finite elements removed & exists in sparsity pattern (GK). Make it ready for release 3.3 (RH) git-svn-id: https://svn.dealii.org/trunk@5449 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/2002/3.2.0-vs-3.3.0.html b/deal.II/doc/news/2002/3.2.0-vs-3.3.0.html index f6ee045034..a8ee290b5c 100644 --- a/deal.II/doc/news/2002/3.2.0-vs-3.3.0.html +++ b/deal.II/doc/news/2002/3.2.0-vs-3.3.0.html @@ -13,15 +13,14 @@

Changes between versions 3.2.0 and 3.3.0

-This is the list of changes made after the release of -deal.II version 3.2. It is subdivided into changes -made to the three sub-libraries base, -lac, and deal.II, as well as +This is a quite extensive list of changes made between versions 3.2.0 +and 3.3.0 of deal.II. It is subdivided into changes +made to the three sub-libraries base, lac, and deal.II, as well as changes to the general infrastructure, documentation, etc. -

General

@@ -231,6 +230,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 +339,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)