From 3e200f7c4b6b8c161262e6b59a97b7a5e9ec9a6a Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 27 Mar 2025 09:34:03 +0100 Subject: [PATCH] Apply review suggestions --- include/deal.II/lac/sparse_matrix_tools.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/sparse_matrix_tools.h b/include/deal.II/lac/sparse_matrix_tools.h index f722d604d8..bf0f0324a7 100644 --- a/include/deal.II/lac/sparse_matrix_tools.h +++ b/include/deal.II/lac/sparse_matrix_tools.h @@ -510,9 +510,15 @@ namespace SparseMatrixTools const types::global_dof_index ind = system_matrix.get_sparsity_pattern()( local_dof_indices[i], local_dof_indices[j]); - if (ind != numbers::invalid_dof_index) + + // If SparsityPattern::operator()` found the entry, then + // we can access the corresponding value without a + // second search in the sparse matrix, otherwise the + // matrix entry at that index is zero because it does + // not exist in the sparsity pattern + if (ind != SparsityPattern::invalid_entry) { - SparseMatrixIterators::Accessor + const SparseMatrixIterators::Accessor accessor(&system_matrix, ind); cell_matrix(i, j) = accessor.value(); } -- 2.39.5