DUNE-FEM (unstable)

hasboundaryintersection.hh
1#ifndef DUNE_FEM_MISC_HASBOUNDARYINTERSECTION_HH
2#define DUNE_FEM_MISC_HASBOUNDARYINTERSECTION_HH
3
4namespace Dune
5{
6 namespace Fem
7 {
8
9 template< class GridPart >
10 struct HasBoundaryIntersection
11 {
12 using EntityType = typename GridPart::template Codim<0>::EntityType;
13 static bool apply(const EntityType &entity)
14 {
15 return entity.hasBoundaryIntersections();
16 }
17 };
18
19 } // namespace Fem
20
21} // namespace Dune
22
23#endif // #ifndef DUNE_FEM_MISC_HASBOUNDARYINTERSECTION_HH
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Sep 3, 22:42, 2025)