MFEM  v4.1.0
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
fem.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010-2020, 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_FEM_HPP
13 #define MFEM_FEM_HPP
14 
15 #include "intrules.hpp"
16 #include "geom.hpp"
17 #include "fe.hpp"
18 #include "fe_coll.hpp"
19 #include "eltrans.hpp"
20 #include "coefficient.hpp"
21 #include "complex_fem.hpp"
22 #include "lininteg.hpp"
23 #include "nonlininteg.hpp"
24 #include "bilininteg.hpp"
25 #include "fespace.hpp"
26 #include "gridfunc.hpp"
27 #include "linearform.hpp"
28 #include "nonlinearform.hpp"
29 #include "bilinearform.hpp"
30 #include "hybridization.hpp"
31 #include "datacollection.hpp"
32 #include "estimators.hpp"
33 #include "staticcond.hpp"
34 #include "tmop.hpp"
35 #include "tmop_tools.hpp"
36 #include "gslib.hpp"
37 #include "restriction.hpp"
38 #include "quadinterpolator.hpp"
40 
41 #ifdef MFEM_USE_MPI
42 #include "pfespace.hpp"
43 #include "pgridfunc.hpp"
44 #include "plinearform.hpp"
45 #include "pbilinearform.hpp"
46 #include "pnonlinearform.hpp"
47 #endif
48 
49 #ifdef MFEM_USE_SIDRE
50 #include "sidredatacollection.hpp"
51 #endif
52 
53 #ifdef MFEM_USE_CONDUIT
55 #endif
56 
57 #endif