From 964c608e5f96ea5c1530c2ed73e0bcbeb79143ab Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 23 Mar 2000 12:29:22 +0000 Subject: [PATCH] Fix thinko. git-svn-id: https://svn.dealii.org/trunk@2625 0785d39b-7218-0410-832d-ea1e28bc413d --- .../lac/include/lac/sparse_vanka.templates.h | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_vanka.templates.h b/deal.II/lac/include/lac/sparse_vanka.templates.h index afa76ef20a..80c6337db8 100644 --- a/deal.II/lac/include/lac/sparse_vanka.templates.h +++ b/deal.II/lac/include/lac/sparse_vanka.templates.h @@ -142,6 +142,7 @@ SparseVanka::compute_inverses (const unsigned int begin, }; + template void SparseVanka::compute_inverse (const unsigned int row, @@ -159,16 +160,26 @@ SparseVanka::compute_inverse (const unsigned int row, // collect the dofs that couple // with #row# - local_indices.resize (0); + local_indices.resize (row_length); for (unsigned int i=0; iglobal_entry(global_entry); + }; // Compute inverse inverses[row]->gauss_jordan(); -- 2.39.5