Go to the documentation of this file.
3#ifndef DUNE_MMESH_GRID_MULTIID_HH
4#define DUNE_MMESH_GRID_MULTIID_HH
20 using ThisType = MultiId;
21 using T = std::size_t;
22 using VT = std::vector<T>;
25 using Storage = std::array<T, 4>;
27 MultiId() : size_(0), hash_(-1) {}
29 MultiId(
const MultiId& other )
30 : vt_ ( other.vt_ ), size_( other.size_ ), hash_( other.hash_ )
33 MultiId(
const std::vector<T>& vt )
34 : size_( vt.size() ), hash_(-1)
37 for (
const auto& v : vt)
41 MultiId( std::initializer_list<T> l )
42 : MultiId (
std::vector<T>(l) )
49 ThisType& operator= (
const ThisType& b )
60 bool operator< (
const ThisType& b )
const
62 if( size() != b.size() )
63 return size() < b.size();
65 for(
int i = 0; i < size_; ++i )
66 if( vt_[i] != b.vt_[i] )
67 return vt_[i] < b.vt_[i];
72 bool operator== (
const ThisType& b )
const
74 if( size() != b.size() )
77 for(
int i = 0; i < size_; ++i )
78 if( vt_[i] != b.vt_[i] )
84 bool operator<= (
const ThisType& b )
const
86 return !b.operator<(*this);
89 bool operator!= (
const ThisType& b )
const
91 return !operator==( b );
94 std::size_t size()
const
103 for(
int i = 0; i < size_; ++i)
104 vec.push_back(vt_[i]);
109 std::size_t hash()
const
111 if (hash_ == std::size_t(-1))
119 static constexpr std::hash<std::size_t> hasher;
120 hash_ = hasher(vt_[0]);
121 for ( std::size_t i = 1; i < size_; ++i )
122 hash_ = hash_ ^ (hasher(vt_[i]) << i);
130 mutable std::size_t hash_;
139 template <>
struct hash<Dune::MMeshImpl::MultiId>
141 size_t operator()(
const Dune::MMeshImpl::MultiId&
id)
const
148 inline ostream&
operator<<(ostream& os,
const Dune::MMeshImpl::MultiId& multiId)
150 for(
const auto& v : multiId.vt() )
Some common helper methods.
ostream & operator<<(ostream &os, const Dune::MMeshImpl::MultiId &multiId)
overload operator<<
Definition: multiid.hh:148