Loading [MathJax]/extensions/TeX/AMSsymbols.js
 deal.II version GIT relicensing-3012-g95e643124d 2025-04-03 05:00:00+00:00
\(\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\}}\)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
linear_index_iterator.h
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 2018 - 2023 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Part of the source code is dual licensed under Apache-2.0 WITH
9// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
10// governing the source code and code contributions can be found in
11// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
12//
13// ------------------------------------------------------------------------
14
15#ifndef dealii_linear_index_iterator_h
16#define dealii_linear_index_iterator_h
17
18#include <deal.II/base/config.h>
19
21
22#include <iterator>
23
24
139template <typename DerivedIterator, typename AccessorType>
141{
142public:
146#ifdef DEAL_II_HAVE_CXX20
147 using iterator_category = std::contiguous_iterator_tag;
148#else
149 using iterator_category = std::random_access_iterator_tag;
150#endif
151
156 using value_type = AccessorType;
157
161 using difference_type = std::ptrdiff_t;
162
166 using reference = const value_type &;
167
171 using pointer = const value_type *;
172
176 using size_type = typename value_type::size_type;
177
181 DerivedIterator &
182 operator=(const DerivedIterator &it);
183
187 DerivedIterator &
189
193 DerivedIterator
195
199 DerivedIterator &
201
205 DerivedIterator
207
211 DerivedIterator
213
217 DerivedIterator
219
223 DerivedIterator &
225
229 DerivedIterator &
231
239 operator-(const DerivedIterator &p) const;
240
245 operator*() const;
246
250 pointer
251 operator->() const;
252
257 template <typename OtherIterator>
258 std::enable_if_t<std::is_convertible_v<OtherIterator, DerivedIterator>, bool>
259 operator==(const OtherIterator &right) const
260 {
261 const auto &right_2 = static_cast<const DerivedIterator &>(right);
262 return this->accessor == right_2.accessor;
263 }
264
268 template <typename OtherIterator>
269 std::enable_if_t<std::is_convertible_v<OtherIterator, DerivedIterator>, bool>
270 operator!=(const OtherIterator &right) const
271 {
272 return !(*this == right);
273 }
274
282 bool
283 operator<=(const DerivedIterator &) const;
284
292 bool
293 operator>=(const DerivedIterator &) const;
294
302 bool
303 operator<(const DerivedIterator &) const;
304
309 bool
310 operator>(const DerivedIterator &) const;
311
312protected:
313 /*
314 * The inheriting class should have a default constructor.
315 */
316 LinearIndexIterator() = default; // NOLINT
317
321 LinearIndexIterator(const AccessorType accessor);
322
323protected:
327 AccessorType accessor;
328};
329
330
331
332template <typename DerivedIterator, typename AccessorType>
333inline DerivedIterator &
335 const DerivedIterator &it)
336{
337 accessor.container = it.container;
338 accessor.linear_index = it.linear_index;
339 return static_cast<DerivedIterator &>(*this);
340}
341
342
343
344template <typename DerivedIterator, typename AccessorType>
345inline DerivedIterator &
350
351
352
353template <typename DerivedIterator, typename AccessorType>
354inline DerivedIterator
356{
357 const DerivedIterator copy(this->accessor);
358 operator+=(1);
359 return copy;
360}
361
362
363
364template <typename DerivedIterator, typename AccessorType>
365inline DerivedIterator &
370
371
372
373template <typename DerivedIterator, typename AccessorType>
374inline DerivedIterator
376{
377 const DerivedIterator copy(this->accessor);
378 operator+=(-1);
379 return copy;
380}
381
382
383
384template <typename DerivedIterator, typename AccessorType>
385inline DerivedIterator
387 const difference_type n) const
388{
389 DerivedIterator copy(this->accessor);
390 copy += n;
391 return copy;
392}
393
394
395
396template <typename DerivedIterator, typename AccessorType>
397inline DerivedIterator
399 const difference_type n) const
400{
401 DerivedIterator copy(this->accessor);
402 copy += -n;
403 return copy;
404}
405
406
407
408template <typename DerivedIterator, typename AccessorType>
409inline DerivedIterator &
411 const difference_type n)
412{
413 accessor.linear_index += n;
414 return static_cast<DerivedIterator &>(*this);
415}
416
417
418
419template <typename DerivedIterator, typename AccessorType>
420inline DerivedIterator &
426
427
428
429template <typename DerivedIterator, typename AccessorType>
430inline
433 const DerivedIterator &other) const
434{
435 Assert(this->accessor.container == other.accessor.container,
437 "Only iterators pointing to the same container can be compared."));
438 return this->accessor.linear_index - other.accessor.linear_index;
439}
440
441
442
443template <typename DerivedIterator, typename AccessorType>
449
450
451
452template <typename DerivedIterator, typename AccessorType>
458
459
460
461template <typename DerivedIterator, typename AccessorType>
462inline bool
464 const DerivedIterator &other) const
465{
466 return (*this == other) || (*this < other);
467}
468
469
470
471template <typename DerivedIterator, typename AccessorType>
472inline bool
474 const DerivedIterator &other) const
475{
476 return !(*this < other);
477}
478
479
480
481template <typename DerivedIterator, typename AccessorType>
482inline bool
484 const DerivedIterator &other) const
485{
486 Assert(this->accessor.container == other.accessor.container,
488 "Only iterators pointing to the same container can be compared."));
489 return this->accessor.linear_index < other.accessor.linear_index;
490}
491
492
493
494template <typename DerivedIterator, typename AccessorType>
495inline bool
497 const DerivedIterator &other) const
498{
499 return other < static_cast<const DerivedIterator &>(*this);
500}
501
502
503
504template <typename DerivedIterator, typename AccessorType>
506 const AccessorType accessor)
507 : accessor(accessor)
508{}
509
510
512
513#endif
reference operator*() const
std::enable_if_t< std::is_convertible_v< OtherIterator, DerivedIterator >, bool > operator!=(const OtherIterator &right) const
LinearIndexIterator(const AccessorType accessor)
std::enable_if_t< std::is_convertible_v< OtherIterator, DerivedIterator >, bool > operator==(const OtherIterator &right) const
bool operator>=(const DerivedIterator &) const
difference_type operator-(const DerivedIterator &p) const
bool operator<=(const DerivedIterator &) const
DerivedIterator & operator++()
DerivedIterator operator--(int)
DerivedIterator operator++(int)
bool operator>(const DerivedIterator &) const
const value_type * pointer
LinearIndexIterator()=default
DerivedIterator operator-(const difference_type n) const
std::random_access_iterator_tag iterator_category
typename value_type::size_type size_type
bool operator<(const DerivedIterator &) const
DerivedIterator operator+(const difference_type n) const
const value_type & reference
DerivedIterator & operator=(const DerivedIterator &it)
DerivedIterator & operator-=(const difference_type n)
DerivedIterator & operator--()
DerivedIterator & operator+=(const difference_type n)
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:35
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:36
#define Assert(cond, exc)
static ::ExceptionBase & ExcMessage(std::string arg1)