From 2716ede7441500042ee6ae26641f5f860c3e061a Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 20 Mar 2025 09:29:47 +0100 Subject: [PATCH] Inline an often-used function --- include/deal.II/lac/sparse_matrix.h | 12 ++++++++++++ include/deal.II/lac/sparse_matrix.templates.h | 10 ---------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/include/deal.II/lac/sparse_matrix.h b/include/deal.II/lac/sparse_matrix.h index 47779962a0..0e0c5c2e5b 100644 --- a/include/deal.II/lac/sparse_matrix.h +++ b/include/deal.II/lac/sparse_matrix.h @@ -1815,6 +1815,7 @@ SparseMatrix::m() const } + template inline typename SparseMatrix::size_type SparseMatrix::n() const @@ -1824,6 +1825,17 @@ SparseMatrix::n() const } + +template +inline const SparsityPattern & +SparseMatrix::get_sparsity_pattern() const +{ + Assert(cols != nullptr, ExcNeedsSparsityPattern()); + return *cols; +} + + + // Inline the set() and add() functions, since they will be called frequently. template inline void diff --git a/include/deal.II/lac/sparse_matrix.templates.h b/include/deal.II/lac/sparse_matrix.templates.h index 9a77659366..2830a35c26 100644 --- a/include/deal.II/lac/sparse_matrix.templates.h +++ b/include/deal.II/lac/sparse_matrix.templates.h @@ -1875,16 +1875,6 @@ SparseMatrix::SSOR(Vector &dst, const number omega) const -template -const SparsityPattern & -SparseMatrix::get_sparsity_pattern() const -{ - Assert(cols != nullptr, ExcNeedsSparsityPattern()); - return *cols; -} - - - template void SparseMatrix::print_formatted(std::ostream &out, -- 2.39.5