MFEM  v4.4.0
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
linalg.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010-2022, Lawrence Livermore National Security, LLC. Produced
2 // at the Lawrence Livermore National Laboratory. All Rights reserved. See files
3 // LICENSE and NOTICE for details. LLNL-CODE-806117.
4 //
5 // This file is part of the MFEM library. For more information and source code
6 // availability visit https://mfem.org.
7 //
8 // MFEM is free software; you can redistribute it and/or modify it under the
9 // terms of the BSD-3 license. We welcome feedback and contributions, see file
10 // CONTRIBUTING.md for details.
11 
12 #ifndef MFEM_LINALG
13 #define MFEM_LINALG
14 
15 // Linear algebra header file
16 
17 #include "vector.hpp"
18 #include "operator.hpp"
19 #include "matrix.hpp"
20 #include "sparsemat.hpp"
21 #include "complex_operator.hpp"
22 #include "blockvector.hpp"
23 #include "blockmatrix.hpp"
24 #include "blockoperator.hpp"
25 #include "sparsesmoothers.hpp"
26 #include "densemat.hpp"
27 #include "symmat.hpp"
28 #include "ode.hpp"
29 #include "solvers.hpp"
30 #include "handle.hpp"
31 #include "invariants.hpp"
32 #include "constraints.hpp"
33 #include "auxiliary.hpp"
34 
35 #ifdef MFEM_USE_AMGX
36 #include "amgxsolver.hpp"
37 #endif
38 
39 #ifdef MFEM_USE_SUNDIALS
40 #include "sundials.hpp"
41 #endif
42 
43 #ifdef MFEM_USE_HIOP
44 #include "hiop.hpp"
45 #endif
46 
47 #ifdef MFEM_USE_GINKGO
48 #include "ginkgo.hpp"
49 #endif
50 
51 #ifdef MFEM_USE_MPI
52 #include "hypre_parcsr.hpp"
53 #include "hypre.hpp"
54 
55 #ifdef MFEM_USE_MUMPS
56 #include "mumps.hpp"
57 #endif
58 
59 #ifdef MFEM_USE_PETSC
60 #include "petsc.hpp"
61 #endif
62 
63 #ifdef MFEM_USE_SLEPC
64 #include "slepc.hpp"
65 #endif
66 
67 #ifdef MFEM_USE_SUPERLU
68 #include "superlu.hpp"
69 #endif
70 
71 #ifdef MFEM_USE_STRUMPACK
72 #include "strumpack.hpp"
73 #endif
74 
75 #ifdef MFEM_USE_MKL_CPARDISO
76 #include "cpardiso.hpp"
77 #endif
78 
79 #endif // MFEM_USE_MPI
80 
81 #endif