Skip to content
Snippets Groups Projects
Commit cb418c5a authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

[boxmpnckinetic] change order of grid type to be used.

This is only fixing the test. It has to be further evaluated why this
test does not run with UGGrid in the current test environment.



git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12636 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent a2f4947d
No related branches found
No related tags found
No related merge requests found
...@@ -83,12 +83,12 @@ NEW_TYPE_TAG(EvaporationAtmosphereProblem, ...@@ -83,12 +83,12 @@ NEW_TYPE_TAG(EvaporationAtmosphereProblem,
// Set the grid type // Set the grid type
SET_PROP(EvaporationAtmosphereProblem, Grid) SET_PROP(EvaporationAtmosphereProblem, Grid)
{ {
#ifdef HAVE_UG #if HAVE_ALUGRID
typedef typename Dune::UGGrid<2> type;
#elif HAVE_ALUGRID
typedef typename Dune::ALUGrid<2, 2, Dune::cube, Dune::nonconforming> type; typedef typename Dune::ALUGrid<2, 2, Dune::cube, Dune::nonconforming> type;
#elif HAVE_UG
typedef typename Dune::UGGrid<2> type;
#else #else
Dune::YaspGrid<2> type; typedef typename Dune::YaspGrid<2> type;
#endif #endif
}; };
......
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