]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Inline an often-used function 18264/head
authorMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 20 Mar 2025 08:29:47 +0000 (09:29 +0100)
committerMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 20 Mar 2025 08:29:47 +0000 (09:29 +0100)
include/deal.II/lac/sparse_matrix.h
include/deal.II/lac/sparse_matrix.templates.h

index 47779962a0c44bba58544a9b2d0c835eb04bd2ed..0e0c5c2e5ba37821e5ee05ea099e3a3ee9d818e6 100644 (file)
@@ -1815,6 +1815,7 @@ SparseMatrix<number>::m() const
 }
 
 
+
 template <typename number>
 inline typename SparseMatrix<number>::size_type
 SparseMatrix<number>::n() const
@@ -1824,6 +1825,17 @@ SparseMatrix<number>::n() const
 }
 
 
+
+template <typename number>
+inline const SparsityPattern &
+SparseMatrix<number>::get_sparsity_pattern() const
+{
+  Assert(cols != nullptr, ExcNeedsSparsityPattern());
+  return *cols;
+}
+
+
+
 // Inline the set() and add() functions, since they will be called frequently.
 template <typename number>
 inline void
index 9a776593668e0a4ee913c43c431b318043592e6a..2830a35c26ced3f1175aa1c9a267aa2a86a58490 100644 (file)
@@ -1875,16 +1875,6 @@ SparseMatrix<number>::SSOR(Vector<somenumber> &dst, const number omega) const
 
 
 
-template <typename number>
-const SparsityPattern &
-SparseMatrix<number>::get_sparsity_pattern() const
-{
-  Assert(cols != nullptr, ExcNeedsSparsityPattern());
-  return *cols;
-}
-
-
-
 template <typename number>
 void
 SparseMatrix<number>::print_formatted(std::ostream      &out,

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.