From: guido Date: Mon, 26 Apr 1999 20:01:31 +0000 (+0000) Subject: removed precondition in SparseMatrix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87f5e3554cd5e1679d6e7f99613b4823bdffbad1;p=dealii-svn.git removed precondition in SparseMatrix git-svn-id: https://svn.dealii.org/trunk@1209 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 d369db95a2..8cd313955c 100644 --- a/deal.II/lac/include/lac/sparse_matrix.h +++ b/deal.II/lac/include/lac/sparse_matrix.h @@ -810,9 +810,6 @@ class SparseMatrix // template void SOR (Vector& dst, const number om = 1.) const; - // - template - void precondition (Vector& dst, const Vector& src) const; /** * Return a (constant) reference to the diff --git a/deal.II/lac/include/lac/sparse_matrix.templates.h b/deal.II/lac/include/lac/sparse_matrix.templates.h index 54565fb685..3d2040cb2c 100644 --- a/deal.II/lac/include/lac/sparse_matrix.templates.h +++ b/deal.II/lac/include/lac/sparse_matrix.templates.h @@ -426,15 +426,6 @@ SparseMatrix::precondition_SOR (Vector& dst, const Vector -template -void SparseMatrix::precondition (Vector &dst, const Vector &src) const { - Assert (m() == n(), ExcMatrixNotSquare()); - dst=src; -}; - - - template template void