From: wolf Date: Sat, 31 May 2003 20:49:36 +0000 (+0000) Subject: scale vs operator*= and /= X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=346761024ddb33729ce9fc5a22ccd07098827fdc;p=dealii-svn.git scale vs operator*= and /= git-svn-id: https://svn.dealii.org/trunk@7704 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 7ec0cee719..7a7b577f05 100644 --- a/deal.II/doc/news/2002/c-3-4.html +++ b/deal.II/doc/news/2002/c-3-4.html @@ -618,36 +618,51 @@ contributor's names are abbreviated by WB (Wolfgang Bangerth), GK

lac

    +
  1. Deprecated: The functions Vector::scale + and BlockVector::scale are now deprecated + and will be removed in a future version. Use operator*= and + operator/= instead. +
    + (WB 2003/05/31) +

    + +
  2. New: Vector and + BlockVector now have operator/= + for scaling by a scalar. +
    + (WB 2003/05/31) +

  3. 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) -

    + 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) +

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

    + has empty() function, which calls the inherited SparseMatrix empty() function. +
    + (Brian Carnes 2003/05/22) +

  5. New: PreconditionPSOR implements - interface to permuted SOR preconditioner function in SparseMatrix. -
    - (GK 2003/05/12) -

    + interface to permuted SOR preconditioner function in SparseMatrix. +
    + (GK 2003/05/12) +

  6. Improved: FullMatrix::fill now copies the largest possible block, - whether the destination or source matrix is bigger. Additionally, an - offset inside the source matrix may be specified. -
    - (GK 2003/03/31) -

    + class="member">fill now copies the largest possible block, + whether the destination or source matrix is bigger. Additionally, an + offset inside the source matrix may be specified. +
    + (GK 2003/03/31) +

  7. New/Changed: The SparseILU,