3 #ifndef DUNE_GEOGRID_INDEXSETS_HH
4 #define DUNE_GEOGRID_INDEXSETS_HH
8 #include <dune/common/typetraits.hh>
24 template<
class Gr
id,
class HostIndexSet >
26 :
public Dune::IndexSet< Grid, IndexSet< Grid, HostIndexSet >, typename HostIndexSet::IndexType >
31 typedef typename remove_const< Grid >::type::Traits Traits;
33 typedef typename Traits::HostGrid HostGrid;
44 explicit IndexSet (
const HostIndexSet &hostIndexSet )
45 : hostIndexSet_( &hostIndexSet )
49 : hostIndexSet_( other.hostIndexSet_ )
54 hostIndexSet_ = other.hostIndexSet_;
62 IndexType index (
const typename Traits::template Codim< cc >::Entity &entity )
const
64 return Grid::getRealImplementation( entity ).index( hostIndexSet() );
68 IndexType subIndex (
const typename Traits::template Codim< cc >::Entity &entity,
int i,
unsigned int codim )
const
70 return Grid::getRealImplementation( entity ).subIndex( hostIndexSet(), i, codim );
75 return hostIndexSet().size( type );
78 int size (
int codim )
const
80 return hostIndexSet().size( codim );
83 template<
class Entity >
86 return Grid::getRealImplementation( entity ).isContained( hostIndexSet() );
89 const std::vector< GeometryType > &
geomTypes (
int codim )
const
91 return hostIndexSet().geomTypes( codim );
94 operator bool ()
const {
return bool( hostIndexSet_ ); }
97 const HostIndexSet &hostIndexSet ()
const
100 return *hostIndexSet_;
103 const HostIndexSet *hostIndexSet_;
110 #endif // #ifndef DUNE_GEOGRID_INDEXSETS_HH