Skip to content
Snippets Groups Projects
Unverified Commit 3e1df349 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler Committed by René Fritze
Browse files

[grids] add AvailableGridTypes (alberta is not suitable for such a tuple)

parent e346dd74
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
#ifndef DUNE_XT_GRID_GRIDS_HH #ifndef DUNE_XT_GRID_GRIDS_HH
#define DUNE_XT_GRID_GRIDS_HH #define DUNE_XT_GRID_GRIDS_HH
#include <boost/tuple/tuple.hpp>
#if HAVE_ALBERTA #if HAVE_ALBERTA
# include <dune/xt/common/disable_warnings.hh> # include <dune/xt/common/disable_warnings.hh>
# include <dune/grid/albertagrid.hh> # include <dune/grid/albertagrid.hh>
...@@ -60,4 +62,36 @@ typedef Dune::AlbertaGrid<3, 3> ALBERTA_3D; ...@@ -60,4 +62,36 @@ typedef Dune::AlbertaGrid<3, 3> ALBERTA_3D;
#endif #endif
namespace Dune {
namespace XT {
namespace Grid {
using AvailableGridTypes = boost::tuple<ONED_1D,
YASP_1D_EQUIDISTANT_OFFSET,
YASP_2D_EQUIDISTANT_OFFSET,
YASP_3D_EQUIDISTANT_OFFSET,
YASP_4D_EQUIDISTANT_OFFSET
#if HAVE_DUNE_ALUGRID
,
ALU_2D_SIMPLEX_CONFORMING,
ALU_2D_SIMPLEX_NONCONFORMING,
ALU_2D_CUBE,
ALU_3D_SIMPLEX_CONFORMING,
ALU_3D_SIMPLEX_NONCONFORMING,
ALU_3D_CUBE
#endif
#if HAVE_DUNE_UGGRID || HAVE_UG
,
UG_2D,
UG_3D
#endif
>;
} // namespace Grid
} // namespace XT
} // namespace Dune
#endif // DUNE_XT_GRID_GRIDS_HH #endif // DUNE_XT_GRID_GRIDS_HH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment