From: wolf Date: Mon, 3 Sep 2001 16:08:19 +0000 (+0000) Subject: Choose a better place for the declaration. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=591a08082f4a8998cda483d336a37723bd41c8df;p=dealii-svn.git Choose a better place for the declaration. git-svn-id: https://svn.dealii.org/trunk@4937 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index fff2ca9177..40a62d9379 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -185,6 +185,12 @@ class FullMatrix : public vector2d bool all_zero () const; + /** + * Scale the entire matrix by a + * fixed factor. + */ + FullMatrix & operator *= (const double factor); + /** * Weighted addition. The matrix * @p{s*B} is added to @p{this}. @@ -195,12 +201,6 @@ class FullMatrix : public vector2d void add (const number s, const FullMatrix &B); - /** - * Scale the entire matrix by a - * fixed factor. - */ - FullMatrix & operator *= (const double factor); - /** * Weighted addition of the * transpose of @p{B} to @p{this}.