Reference documentation for deal.II version GIT relicensing-487-ge9eb5ab491 2024-04-25 07:20:02+00:00
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Loading...
Searching...
No Matches
trilinos_tpetra_solver_direct.cc
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 2024 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Part of the source code is dual licensed under Apache-2.0 WITH
9// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
10// governing the source code and code contributions can be found in
11// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
12//
13// ------------------------------------------------------------------------
14
15#include "deal.II/lac/trilinos_tpetra_solver_direct.templates.h"
16
17#ifdef DEAL_II_TRILINOS_WITH_TPETRA
18# ifdef DEAL_II_TRILINOS_WITH_AMESOS2
19
21
22# ifndef DOXYGEN
23// explicit instantiations
24namespace LinearAlgebra
25{
26 namespace TpetraWrappers
27 {
28# ifdef HAVE_TPETRA_INST_FLOAT
29 template class SolverDirectBase<float>;
30 template class SolverDirect<float>;
31 template class SolverDirectKLU2<float>;
32# endif
33
34# ifdef HAVE_TPETRA_INST_DOUBLE
35 template class SolverDirectBase<double>;
36 template class SolverDirect<double>;
37 template class SolverDirectKLU2<double>;
38# endif
39# ifdef DEAL_II_WITH_COMPLEX_VALUES
40# ifdef HAVE_TPETRA_INST_COMPLEX_FLOAT
41 template class SolverDirectBase<std::complex<float>>;
42 template class SolverDirect<std::complex<float>>;
43 template class SolverDirectKLU2<std::complex<float>>;
44# endif
45# ifdef HAVE_TPETRA_INST_COMPLEX_DOUBLE
46 template class SolverDirectBase<std::complex<double>>;
47 template class SolverDirect<std::complex<double>>;
48 template class SolverDirectKLU2<std::complex<double>>;
49# endif
50# endif
51
52# endif
53
54 } // namespace TpetraWrappers
55
56} // namespace LinearAlgebra
58
59# endif // DEAL_II_TRILINOS_WITH_AMESOS2
60#endif // DEAL_II_TRILINOS_WITH_TPETRA
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:502
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:503