Skip to content
Snippets Groups Projects
Commit 3c5da2ae authored by Adrian Burri's avatar Adrian Burri
Browse files

Added capabilities

[[Imported from SVN: r2449]]
parent 1c9e69c7
No related branches found
No related tags found
No related merge requests found
......@@ -429,6 +429,25 @@ namespace Dune {
const char* elType2Name( ALU3dGridElementType elType );
} // end namespace Dune
namespace Capabilities {
template<int dim,int dimw, ALU3dGridElementType elType>
struct hasLeafIterator< ALU3dGrid<dim, dimw, elType> >
{
static const bool v = true;
};
template<int dim, int dimw, ALU3dGridElementType elType, int cdim>
struct hasEntity<ALU3dGrid<dim, dimw, elType>, cdim >
{
static const bool v = true;
};
template <int dim, int dimw, ALU3dGridElementType elType>
struct isParallel<const ALU3dGrid<dim, dimw, elType> > {
static const bool v = true;
};
}
#include "grid_imp.cc"
#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