Reference documentation for deal.II version 9.0.0
matrix_lib.cc
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2002 - 2017 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE at
12 // the top level of the deal.II distribution.
13 //
14 // ---------------------------------------------------------------------
15 
16 #include <deal.II/lac/matrix_lib.templates.h>
17 #include <deal.II/lac/sparse_matrix.h>
18 
19 DEAL_II_NAMESPACE_OPEN
20 
22  :
23  component(component)
24 {}
25 
26 template void MeanValueFilter::filter(Vector<float> &) const;
27 template void MeanValueFilter::filter(Vector<double> &) const;
28 template void MeanValueFilter::filter(BlockVector<float> &) const;
29 template void MeanValueFilter::filter(BlockVector<double> &) const;
30 template void MeanValueFilter::vmult(Vector<float> &,
31  const Vector<float> &) const;
33  const Vector<double> &) const;
35  const BlockVector<float> &) const;
37  const BlockVector<double> &) const;
38 
39 template void MeanValueFilter::vmult_add(Vector<float> &,
40  const Vector<float> &) const;
42  const Vector<double> &) const;
44  const BlockVector<float> &) const;
46  const BlockVector<double> &) const;
47 
48 DEAL_II_NAMESPACE_CLOSE
MeanValueFilter(const size_type component=numbers::invalid_size_type)
Definition: matrix_lib.cc:21
void vmult(Vector< number > &dst, const Vector< number > &src) const
void vmult_add(Vector< number > &dst, const Vector< number > &src) const
void filter(Vector< number > &v) const
types::global_dof_index size_type
Definition: matrix_lib.h:60