Reference documentation for deal.II version 9.2.0
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
synchronous_iterator.h
Go to the documentation of this file.
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2008 - 2018 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_synchronous_iterator_h
17 #define dealii_synchronous_iterator_h
18 
19 
20 #include <deal.II/base/config.h>
21 
23 
24 #include <iterator>
25 #include <tuple>
26 
28 
51 template <typename Iterators>
53 {
57  SynchronousIterators(const Iterators &i);
58 
63  const Iterators &operator*() const;
64 
69  Iterators &operator*();
70 
71 private:
75  Iterators iterators;
76 };
77 
78 
79 
80 template <typename Iterators>
82  : iterators(i)
83 {}
84 
85 
86 
87 template <typename Iterators>
88 inline const Iterators &SynchronousIterators<Iterators>::operator*() const
89 {
90  return iterators;
91 }
92 
93 
94 
95 template <typename Iterators>
97 {
98  return iterators;
99 }
100 
101 
102 
111 template <typename Iterators>
112 inline bool
115 {
116  return std::get<0>(*a) < std::get<0>(*b);
117 }
118 
119 
120 
128 template <typename Iterators>
129 inline std::size_t
132 {
133  Assert(std::distance(std::get<0>(*b), std::get<0>(*a)) >= 0,
134  ExcInternalError());
135  return std::distance(std::get<0>(*b), std::get<0>(*a));
136 }
137 
138 
144 template <typename I1, typename I2>
145 inline void
146 advance(std::tuple<I1, I2> &t, const unsigned int n)
147 {
148  std::advance(std::get<0>(t), n);
149  std::advance(std::get<1>(t), n);
150 }
151 
157 template <typename I1, typename I2, typename I3>
158 inline void
159 advance(std::tuple<I1, I2, I3> &t, const unsigned int n)
160 {
161  std::advance(std::get<0>(t), n);
162  std::advance(std::get<1>(t), n);
163  std::advance(std::get<2>(t), n);
164 }
165 
171 template <typename I1, typename I2, typename I3, typename I4>
172 inline void
173 advance(std::tuple<I1, I2, I3, I4> &t, const unsigned int n)
174 {
175  std::advance(std::get<0>(t), n);
176  std::advance(std::get<1>(t), n);
177  std::advance(std::get<2>(t), n);
178  std::advance(std::get<3>(t), n);
179 }
180 
181 
182 
188 template <typename I1, typename I2>
189 inline void
190 advance_by_one(std::tuple<I1, I2> &t)
191 {
192  ++std::get<0>(t);
193  ++std::get<1>(t);
194 }
195 
201 template <typename I1, typename I2, typename I3>
202 inline void
203 advance_by_one(std::tuple<I1, I2, I3> &t)
204 {
205  ++std::get<0>(t);
206  ++std::get<1>(t);
207  ++std::get<2>(t);
208 }
209 
215 template <typename I1, typename I2, typename I3, typename I4>
216 inline void
217 advance_by_one(std::tuple<I1, I2, I3, I4> &t)
218 {
219  ++std::get<0>(t);
220  ++std::get<1>(t);
221  ++std::get<2>(t);
222  ++std::get<3>(t);
223 }
224 
225 
226 
232 template <typename Iterators>
234 operator+(const SynchronousIterators<Iterators> &a, const std::size_t n)
235 {
237  ::advance(*x, n);
238  return x;
239 }
240 
246 template <typename Iterators>
249 {
250  ::advance_by_one(*a);
251  return a;
252 }
253 
254 
261 template <typename Iterators>
262 inline bool
265 {
266  return (std::get<0>(*a) != std::get<0>(*b));
267 }
268 
270 
271 #endif
SynchronousIterators::advance_by_one
void advance_by_one(std::tuple< I1, I2 > &t)
Definition: synchronous_iterator.h:190
SynchronousIterators::SynchronousIterators
SynchronousIterators(const Iterators &i)
Definition: synchronous_iterator.h:81
SynchronousIterators
Definition: synchronous_iterator.h:52
SymmetricTensor::operator+
constexpr SymmetricTensor< rank_, dim, typename ProductType< Number, OtherNumber >::type > operator+(const SymmetricTensor< rank_, dim, Number > &left, const SymmetricTensor< rank_, dim, OtherNumber > &right)
Definition: symmetric_tensor.h:2525
SynchronousIterators::operator++
SynchronousIterators< Iterators > operator++(SynchronousIterators< Iterators > &a)
Definition: synchronous_iterator.h:248
SynchronousIterators::advance
void advance(std::tuple< I1, I2 > &t, const unsigned int n)
Definition: synchronous_iterator.h:146
DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:358
Physics::Elasticity::Kinematics::b
SymmetricTensor< 2, dim, Number > b(const Tensor< 2, dim, Number > &F)
AlignedVector::operator!=
bool operator!=(const AlignedVector< T > &lhs, const AlignedVector< T > &rhs)
Definition: aligned_vector.h:1192
SymmetricTensor::operator-
constexpr SymmetricTensor< rank_, dim, typename ProductType< Number, OtherNumber >::type > operator-(const SymmetricTensor< rank_, dim, Number > &left, const SymmetricTensor< rank_, dim, OtherNumber > &right)
Definition: symmetric_tensor.h:2550
exceptions.h
advance
void advance(std::tuple< I1, I2 > &t, const unsigned int n)
Definition: synchronous_iterator.h:146
StandardExceptions::ExcInternalError
static ::ExceptionBase & ExcInternalError()
Assert
#define Assert(cond, exc)
Definition: exceptions.h:1419
SynchronousIterators::operator<
bool operator<(const SynchronousIterators< Iterators > &a, const SynchronousIterators< Iterators > &b)
Definition: synchronous_iterator.h:113
config.h
SynchronousIterators::iterators
Iterators iterators
Definition: synchronous_iterator.h:75
DEAL_II_NAMESPACE_CLOSE
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:359
SynchronousIterators::operator*
const Iterators & operator*() const
Definition: synchronous_iterator.h:88