From: Wolfgang Bangerth Date: Tue, 1 Feb 2000 15:21:49 +0000 (+0000) Subject: Implement the block version of the Vanka smoother. X-Git-Tag: v8.0.0~21054 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c7a504b4dc8161f7d22c3639a07345fd5567066;p=dealii.git Implement the block version of the Vanka smoother. git-svn-id: https://svn.dealii.org/trunk@2306 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_vanka.cc b/deal.II/lac/source/sparse_vanka.cc index 7522b0de04..687577c6f1 100644 --- a/deal.II/lac/source/sparse_vanka.cc +++ b/deal.II/lac/source/sparse_vanka.cc @@ -11,3 +11,12 @@ template void SparseVanka::operator () (Vector &dst, const Vector &src) const; template void SparseVanka::operator () (Vector &dst, const Vector &src) const; + + +template class SparseBlockVanka; +template class SparseBlockVanka; + +template void SparseBlockVanka::operator () (Vector &dst, + const Vector &src) const; +template void SparseBlockVanka::operator () (Vector &dst, + const Vector &src) const;