From: Martin Kronbichler Date: Wed, 29 Apr 2009 16:32:43 +0000 (+0000) Subject: Add a comment for SSOR. X-Git-Tag: v8.0.0~7724 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79133888d4c935a5015c422fdeddb371866a55f2;p=dealii.git Add a comment for SSOR. git-svn-id: https://svn.dealii.org/trunk@18791 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/sparse_matrix.h b/deal.II/lac/include/lac/sparse_matrix.h index b6cf3d02ba..1abfa7aecd 100644 --- a/deal.II/lac/include/lac/sparse_matrix.h +++ b/deal.II/lac/include/lac/sparse_matrix.h @@ -1503,12 +1503,19 @@ class SparseMatrix : public virtual Subscriptor /** * Apply SSOR preconditioning to - * src. + * src with damping + * omega. The optional + * argument + * pos_right_of_diagonal is + * supposed to provide an array where + * each entry specifies the position + * just right of the diagonal in the + * global array of nonzeros. */ template void precondition_SSOR (Vector &dst, const Vector &src, - const number om = 1., + const number omega = 1., const std::vector&pos_right_of_diagonal=std::vector()) const; /**