Reference documentation for deal.II version 8.5.1
sparse_ilu.cc
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 1999 - 2015 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/sparse_ilu.templates.h>
17 
18 DEAL_II_NAMESPACE_OPEN
19 
20 
21 // explicit instantiations
22 template class SparseILU<double>;
23 template void SparseILU<double>::initialize<double> (const SparseMatrix<double> &,
24  const AdditionalData &data);
25 template void SparseILU<double>::vmult <double> (Vector<double> &,
26  const Vector<double> &) const;
27 template void SparseILU<double>::Tvmult <double> (Vector<double> &,
28  const Vector<double> &) const;
29 template void SparseILU<double>::initialize<float> (const SparseMatrix<float> &,
30  const AdditionalData &data);
31 template void SparseILU<double>::vmult<float> (Vector<float> &,
32  const Vector<float> &) const;
33 template void SparseILU<double>::Tvmult<float> (Vector<float> &,
34  const Vector<float> &) const;
35 
36 
37 template class SparseILU<float>;
38 template void SparseILU<float>::initialize<double> (const SparseMatrix<double> &,
39  const AdditionalData &data);
40 template void SparseILU<float>::vmult<double> (Vector<double> &,
41  const Vector<double> &) const;
42 template void SparseILU<float>::Tvmult<double> (Vector<double> &,
43  const Vector<double> &) const;
44 template void SparseILU<float>::initialize<float> (const SparseMatrix<float> &,
45  const AdditionalData &data);
46 template void SparseILU<float>::vmult<float> (Vector<float> &,
47  const Vector<float> &) const;
48 template void SparseILU<float>::Tvmult<float> (Vector<float> &,
49  const Vector<float> &) const;
50 
51 DEAL_II_NAMESPACE_CLOSE