Loading [MathJax]/extensions/tex2jax.js

dune-mmesh (1.4)

multiid.hh
Go to the documentation of this file.
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3#ifndef DUNE_MMESH_GRID_MULTIID_HH
4#define DUNE_MMESH_GRID_MULTIID_HH
5
11
12namespace Dune
13{
14 namespace MMeshImpl
15 {
16
17 class MultiId
18 {
19 public:
20 using ThisType = MultiId;
21 using T = std::size_t;
22 using VT = std::vector<T>;
23
24 // we use an array as internal storage to make MultiId trivially copyable
25 using Storage = std::array<T, 4>;
26
27 MultiId() : size_(0), hash_(-1) {}
28
29 MultiId( const MultiId& other )
30 : vt_ ( other.vt_ ), size_( other.size_ ), hash_( other.hash_ )
31 {}
32
33 MultiId( const std::vector<T>& vt )
34 : size_( vt.size() ), hash_(-1)
35 {
36 int i = 0;
37 for (const auto& v : vt)
38 vt_[ i++ ] = v;
39 }
40
41 MultiId( std::initializer_list<T> l )
42 : MultiId ( std::vector<T>(l) )
43 {}
44
45 MultiId( T t )
46 : MultiId ( { t } )
47 {}
48
49 ThisType& operator= ( const ThisType& b )
50 {
51 if (this != &b)
52 {
53 vt_ = b.vt_;
54 size_ = b.size_;
55 hash_ = b.hash_;
56 }
57 return *this;
58 }
59
60 bool operator< ( const ThisType& b ) const
61 {
62 if( size() != b.size() )
63 return size() < b.size();
64
65 for( int i = 0; i < size_; ++i )
66 if( vt_[i] != b.vt_[i] )
67 return vt_[i] < b.vt_[i];
68
69 return false;
70 }
71
72 bool operator== ( const ThisType& b ) const
73 {
74 if( size() != b.size() )
75 return false;
76
77 for( int i = 0; i < size_; ++i )
78 if( vt_[i] != b.vt_[i] )
79 return false;
80
81 return true;
82 }
83
84 bool operator<= ( const ThisType& b ) const
85 {
86 return !b.operator<(*this);
87 }
88
89 bool operator!= ( const ThisType& b ) const
90 {
91 return !operator==( b );
92 }
93
94 std::size_t size() const
95 {
96 return size_;
97 }
98
99 VT vt() const
100 {
101 std::vector<T> vec;
102 vec.reserve(size_);
103 for(int i = 0; i < size_; ++i)
104 vec.push_back(vt_[i]);
105 return vec;
106 }
107
109 std::size_t hash() const
110 {
111 if (hash_ == std::size_t(-1))
112 {
113 if( size_ == 0 )
114 {
115 hash_ = 0;
116 return hash_;
117 }
118
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);
123 }
124 return hash_;
125 }
126
127 private:
128 Storage vt_;
129 std::size_t size_;
130 mutable std::size_t hash_;
131 };
132
133 } // end namespace MMeshImpl
134} // end namespace Dune
135
136namespace std
137{
139 template <> struct hash<Dune::MMeshImpl::MultiId>
140 {
141 size_t operator()(const Dune::MMeshImpl::MultiId& id) const
142 {
143 return id.hash();
144 }
145 };
146
148 inline ostream& operator<<(ostream& os, const Dune::MMeshImpl::MultiId& multiId)
149 {
150 for( const auto& v : multiId.vt() )
151 os << v << " ";
152 return os;
153 }
154}
155
156#endif
Some common helper methods.
STL namespace.
ostream & operator<<(ostream &os, const Dune::MMeshImpl::MultiId &multiId)
overload operator<<
Definition: multiid.hh:148
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 5, 23:02, 2025)