]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Apply review suggestions 18265/head
authorMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 27 Mar 2025 08:34:03 +0000 (09:34 +0100)
committerMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 27 Mar 2025 08:34:03 +0000 (09:34 +0100)
include/deal.II/lac/sparse_matrix_tools.h

index f722d604d84db364d5440fa7ce2a698071e64d09..bf0f0324a7a4763c7a6b84407547a5e4a552500b 100644 (file)
@@ -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<Number, true>
+                          const SparseMatrixIterators::Accessor<Number, true>
                             accessor(&system_matrix, ind);
                           cell_matrix(i, j) = accessor.value();
                         }

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.