From: brian Date: Thu, 22 May 2003 15:20:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b659ccf75ecb216c3d343d091884426e785a2d3;p=dealii-svn.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.