MFEM  v3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
fem.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010, Lawrence Livermore National Security, LLC. Produced at
2 // the Lawrence Livermore National Laboratory. LLNL-CODE-443211. All Rights
3 // reserved. See file COPYRIGHT for details.
4 //
5 // This file is part of the MFEM library. For more information and source code
6 // availability see http://mfem.googlecode.com.
7 //
8 // MFEM is free software; you can redistribute it and/or modify it under the
9 // terms of the GNU Lesser General Public License (as published by the Free
10 // Software Foundation) version 2.1 dated February 1999.
11 
12 #ifndef MFEM_FEM
13 #define MFEM_FEM
14 
15 #include "../general/array.hpp"
16 #include "../linalg/linalg.hpp"
17 #include "../mesh/mesh_headers.hpp"
18 
19 #include "intrules.hpp"
20 #include "geom.hpp"
21 #include "fe.hpp"
22 #include "fe_coll.hpp"
23 #include "eltrans.hpp"
24 #include "coefficient.hpp"
25 #include "lininteg.hpp"
26 #include "nonlininteg.hpp"
27 #include "bilininteg.hpp"
28 #include "fespace.hpp"
29 #include "gridfunc.hpp"
30 #include "linearform.hpp"
31 #include "nonlinearform.hpp"
32 #include "bilinearform.hpp"
33 #include "datacollection.hpp"
34 
35 #ifdef MFEM_USE_MPI
36 #include <mpi.h>
37 #include "pfespace.hpp"
38 #include "pgridfunc.hpp"
39 #include "plinearform.hpp"
40 #include "pbilinearform.hpp"
41 #include "pnonlinearform.hpp"
42 #endif
43 
44 #endif