Skip to content
Snippets Groups Projects
Commit 4181ca33 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Added nospilt enum for marking elements.

[[Imported from SVN: r2064]]
parent 1409f052
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,7 @@ namespace Dune
ALU3DSPACE GitterType::Geometric::TetraRule::iso8 };
enum { coarse_element_t =
ALU3DSPACE GitterType::Geometric::TetraRule::crs };
enum { nosplit_element_t = ALU3DSPACE GitterType::Geometric::TetraRule::nosplit };
typedef std::pair<GEOFaceType*, int> NeighbourFaceType;
typedef std::pair<HasFaceType*, int> NeighbourPairType;
......@@ -75,8 +76,9 @@ namespace Dune
typedef ALU3DSPACE BNDFace4Type PLLBndFaceType;
// refinement and coarsening enum for hexahedrons
enum { refine_element_t = ALU3DSPACE GitterType::Geometric::HexaRule::iso8 };
enum { coarse_element_t = ALU3DSPACE GitterType::Geometric::HexaRule::crs };
enum { refine_element_t = ALU3DSPACE GitterType::Geometric::HexaRule::iso8 };
enum { coarse_element_t = ALU3DSPACE GitterType::Geometric::HexaRule::crs };
enum { nosplit_element_t = ALU3DSPACE GitterType::Geometric::HexaRule::nosplit };
typedef std::pair<GEOFaceType*, int> NeighbourFaceType;
typedef std::pair<HasFaceType*, int> NeighbourPairType;
......@@ -622,6 +624,7 @@ namespace Dune
ALU3dImplTraits<GridImp::elementType>::refine_element_t };
enum { coarse_element_t =
ALU3dImplTraits<GridImp::elementType>::coarse_element_t };
enum { nosplit_element_t = ALU3dImplTraits<GridImp::elementType>::nosplit_element_t };
friend class ALU3dGrid < dim , dimworld, GridImp::elementType>;
friend class ALU3dGridIntersectionIterator < GridImp >;
......
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