From 0a437f07af10b41c92104f89281a5085a1e06fd8 Mon Sep 17 00:00:00 2001 From: Markus Wolff <markus.wolff@twt-gmbh.de> Date: Tue, 14 Aug 2012 06:36:58 +0000 Subject: [PATCH] Added deprecated grid type AluCubeGrid again for use with the GridType property of the mpfa properties to avoid bugs if a problem still uses AluCubeGrid git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8850 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/decoupled/common/fv/mpfa/fvmpfaproperties.hh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dumux/decoupled/common/fv/mpfa/fvmpfaproperties.hh b/dumux/decoupled/common/fv/mpfa/fvmpfaproperties.hh index d612552e94..8e5abdf499 100644 --- a/dumux/decoupled/common/fv/mpfa/fvmpfaproperties.hh +++ b/dumux/decoupled/common/fv/mpfa/fvmpfaproperties.hh @@ -37,6 +37,7 @@ #include <dune/grid/sgrid.hh> #if HAVE_ALUGRID #include <dune/grid/alugrid/2d/alugrid.hh> +#include <dune/grid/alugrid/3d/alugrid.hh> #endif #if HAVE_UG #include <dune/grid/uggrid.hh> @@ -88,6 +89,12 @@ struct GridImp<Dune::ALUGrid<dim, dim, Dune::cube, Dune::nonconforming>, dim> { static const int imp = GridTypes::aluGrid; }; +//DEPRECATED!! +template<int dim> +struct GridImp<Dune::ALUCubeGrid<dim, dim>, dim> +{ + static const int imp = GridTypes::aluGrid; +}; #endif #if HAVE_UG -- GitLab