From: brian Date: Thu, 22 May 2003 15:20:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v8.0.0~16507 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec73769146db88cbf6eb3ed12a8de29cac12c51d;p=dealii.git *** empty log message *** git-svn-id: https://svn.dealii.org/trunk@7671 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/2002/c-3-4.html b/deal.II/doc/news/2002/c-3-4.html index 4a30186c56..7ec0cee719 100644 --- a/deal.II/doc/news/2002/c-3-4.html +++ b/deal.II/doc/news/2002/c-3-4.html @@ -619,6 +619,21 @@ contributor's names are abbreviated by WB (Wolfgang Bangerth), GK
    +
  1. New: PointerMatrix now + has empty() function, which returns true if the pointer is null; otherwise + we call the pointer's empty() function. This requires the class MATRIX + to have an empty() function. +
    + (Brian Carnes 2003/05/22) +

    + +
  2. New: SparseLUDecomposition now + has empty() function, which calls the inherited SparseMatrix empty() function. +
    + (Brian Carnes 2003/05/22) +

    +
  3. New: PreconditionPSOR implements interface to permuted SOR preconditioner function in SparseMatrix.