Loading [MathJax]/extensions/TeX/newcommand.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
index_set.h
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 2009 - 2024 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_index_set_h
16#define dealii_index_set_h
17
18#include <deal.II/base/config.h>
19
23#include <deal.II/base/mutex.h>
25#include <deal.II/base/types.h>
26
28
29#include <boost/container/small_vector.hpp>
30
31#include <algorithm>
32#include <vector>
33
34
35#ifdef DEAL_II_WITH_TRILINOS
36# include <Epetra_Map.h>
37# ifdef DEAL_II_TRILINOS_WITH_TPETRA
38# include <Tpetra_Map.hpp>
39# endif
40#endif
41
42#ifdef DEAL_II_WITH_PETSC
43# include <petscis.h>
44#endif
45
47
71{
72public:
73 // forward declarations:
74 class ElementIterator;
75 class IntervalIterator;
76
82
100 using value_type = signed int;
101
102
106 IndexSet();
107
111 explicit IndexSet(const size_type size);
112
116 IndexSet(const IndexSet &) = default;
117
121 IndexSet &
122 operator=(const IndexSet &) = default;
123
128 IndexSet(IndexSet &&is) noexcept;
129
134 IndexSet &
135 operator=(IndexSet &&is) noexcept;
136
137#ifdef DEAL_II_WITH_TRILINOS
138
139# ifdef DEAL_II_TRILINOS_WITH_TPETRA
143 template <typename NodeType>
144 explicit IndexSet(
145 const Teuchos::RCP<
146 const Tpetra::Map<int, types::signed_global_dof_index, NodeType>> &map);
147# endif // DEAL_II_TRILINOS_WITH_TPETRA
148
152 explicit IndexSet(const Epetra_BlockMap &map);
153#endif // DEAL_II_WITH_TRILINOS
154
159 void
160 clear();
161
168 void
169 set_size(const size_type size);
170
179 size() const;
180
187 void
188 add_range(const size_type begin, const size_type end);
189
198 void
199 add_index(const size_type index);
200
225 template <typename ForwardIterator>
226 void
227 add_indices(const ForwardIterator &begin, const ForwardIterator &end);
228
244 void
245 add_indices(const IndexSet &other, const size_type offset = 0);
246
250 bool
251 is_element(const size_type index) const;
252
257 bool
258 is_contiguous() const;
259
269 bool
270 is_empty() const;
271
281 bool
282 is_ascending_and_one_to_one(const MPI_Comm communicator) const;
283
288 n_elements() const;
289
296 nth_index_in_set(const size_type local_index) const;
297
305 index_within_set(const size_type global_index) const;
306
315 unsigned int
316 n_intervals() const;
317
331
336 void
337 compress() const;
338
353 bool
354 operator==(const IndexSet &is) const;
355
370 bool
371 operator!=(const IndexSet &is) const;
372
380 operator&(const IndexSet &is) const;
381
399 get_view(const size_type begin, const size_type end) const;
400
447 get_view(const IndexSet &mask) const;
448
454 std::vector<IndexSet>
456 const std::vector<types::global_dof_index> &n_indices_per_block) const;
457
463 void
464 subtract_set(const IndexSet &other);
465
483 tensor_product(const IndexSet &other) const;
484
493 DEAL_II_DEPRECATED_EARLY
495 pop_back();
496
505 DEAL_II_DEPRECATED_EARLY
507 pop_front();
508
517 std::vector<size_type>
518 get_index_vector() const;
519
527 void
528 fill_index_vector(std::vector<size_type> &indices) const;
529
542 template <typename VectorType>
543 void
544 fill_binary_vector(VectorType &vector) const;
545
553 bool
554 is_subset_of(const IndexSet &other) const;
555
560 template <typename StreamType>
561 void
562 print(StreamType &out) const;
563
568 void
569 write(std::ostream &out) const;
570
575 void
576 read(std::istream &in);
577
582 void
583 block_write(std::ostream &out) const;
584
589 void
590 block_read(std::istream &in);
591
592#ifdef DEAL_II_WITH_TRILINOS
621 Epetra_Map
622 make_trilinos_map(const MPI_Comm communicator = MPI_COMM_WORLD,
623 const bool overlapping = false) const;
624
625# ifdef DEAL_II_TRILINOS_WITH_TPETRA
626 template <
627 typename NodeType =
629 Tpetra::Map<int, types::signed_global_dof_index, NodeType>
630 make_tpetra_map(const MPI_Comm communicator = MPI_COMM_WORLD,
631 const bool overlapping = false) const;
632
633 template <
634 typename NodeType =
636 Teuchos::RCP<Tpetra::Map<int, types::signed_global_dof_index, NodeType>>
637 make_tpetra_map_rcp(const MPI_Comm communicator = MPI_COMM_WORLD,
638 const bool overlapping = false) const;
639# endif
640#endif
641
642#ifdef DEAL_II_WITH_PETSC
643 IS
644 make_petsc_is(const MPI_Comm communicator = MPI_COMM_WORLD) const;
645#endif
646
647
652 std::size_t
653 memory_consumption() const;
654
656 size_type,
657 << "The global index " << arg1
658 << " is not an element of this set.");
659
665 template <class Archive>
666 void
667 serialize(Archive &ar, const unsigned int version);
668
669
681 {
682 public:
687 IntervalAccessor(const IndexSet *idxset, const size_type range_idx);
688
692 explicit IntervalAccessor(const IndexSet *idxset);
693
698 n_elements() const;
699
703 bool
704 is_valid() const;
705
710 begin() const;
711
717 end() const;
718
723 last() const;
724
725 private:
734 operator=(const IntervalAccessor &other);
735
739 bool
740 operator==(const IntervalAccessor &other) const;
744 bool
745 operator<(const IntervalAccessor &other) const;
750 void
751 advance();
756
762
763 friend class IntervalIterator;
764 };
765
771 {
772 public:
777 IntervalIterator(const IndexSet *idxset, const size_type range_idx);
778
782 explicit IntervalIterator(const IndexSet *idxset);
783
788
792 IntervalIterator(const IntervalIterator &other) = default;
793
798 operator=(const IntervalIterator &other) = default;
799
804 operator++();
805
810 operator++(int);
811
815 const IntervalAccessor &
816 operator*() const;
817
821 const IntervalAccessor *
822 operator->() const;
823
827 bool
828 operator==(const IntervalIterator &) const;
829
833 bool
834 operator!=(const IntervalIterator &) const;
835
839 bool
840 operator<(const IntervalIterator &) const;
841
848 int
849 operator-(const IntervalIterator &p) const;
850
856 using iterator_category = std::forward_iterator_tag;
858 using difference_type = std::ptrdiff_t;
861
862 private:
867 };
868
874 {
875 public:
880 ElementIterator(const IndexSet *idxset,
881 const size_type range_idx,
882 const size_type index);
883
887 explicit ElementIterator(const IndexSet *idxset);
888
894 operator*() const;
895
899 bool
900 is_valid() const;
901
906 operator++();
907
912 operator++(int);
913
917 bool
918 operator==(const ElementIterator &) const;
919
923 bool
924 operator!=(const ElementIterator &) const;
925
929 bool
930 operator<(const ElementIterator &) const;
931
940 std::ptrdiff_t
941 operator-(const ElementIterator &p) const;
942
948 using iterator_category = std::forward_iterator_tag;
950 using difference_type = std::ptrdiff_t;
953
954 private:
958 void
959 advance();
960
973 };
974
980 begin() const;
981
997 at(const size_type global_index) const;
998
1004 end() const;
1005
1010 begin_intervals() const;
1011
1017 end_intervals() const;
1018
1023private:
1032 struct Range
1033 {
1036
1038
1047 Range();
1048
1056 Range(const size_type i1, const size_type i2);
1057
1058 friend inline bool
1059 operator<(const Range &range_1, const Range &range_2)
1060 {
1061 return (
1062 (range_1.begin < range_2.begin) ||
1063 ((range_1.begin == range_2.begin) && (range_1.end < range_2.end)));
1064 }
1065
1066 static bool
1068 {
1069 return x.end < y.end;
1070 }
1071
1072 static bool
1074 {
1075 return (x.nth_index_in_set + (x.end - x.begin) <
1076 y.nth_index_in_set + (y.end - y.begin));
1077 }
1078
1079 friend inline bool
1080 operator==(const Range &range_1, const Range &range_2)
1081 {
1082 return ((range_1.begin == range_2.begin) && (range_1.end == range_2.end));
1083 }
1084
1085 static std::size_t
1087 {
1088 return sizeof(Range);
1089 }
1090
1096 template <class Archive>
1097 void
1098 serialize(Archive &ar, const unsigned int version);
1099 };
1100
1109 mutable std::vector<Range> ranges;
1110
1119 mutable bool is_compressed;
1120
1126
1137
1143
1147 void
1148 do_compress() const;
1149
1156 bool
1157 is_element_binary_search(const size_type local_index) const;
1158
1165 size_type
1166 nth_index_in_set_binary_search(const size_type local_index) const;
1167
1174 size_type
1175 index_within_set_binary_search(const size_type global_index) const;
1176
1182 void
1183 add_range_lower_bound(const Range &range);
1184
1188 void
1190 boost::container::small_vector<std::pair<size_type, size_type>, 200>
1191 &tmp_ranges,
1192 const bool ranges_are_sorted);
1193};
1194
1195
1196
1214inline IndexSet
1216{
1217 IndexSet is(N);
1218 is.add_range(0, N);
1219 is.compress();
1220 return is;
1221}
1222
1223/* ------------------ inline functions ------------------ */
1224
1225
1226/* IntervalAccessor */
1227
1229 const IndexSet *idxset,
1230 const IndexSet::size_type range_idx)
1231 : index_set(idxset)
1232 , range_idx(range_idx)
1233{
1234 Assert(range_idx < idxset->n_intervals(),
1235 ExcInternalError("Invalid range index"));
1236}
1237
1238
1239
1241 : index_set(idxset)
1242 , range_idx(numbers::invalid_dof_index)
1243{}
1244
1245
1246
1248 const IndexSet::IntervalAccessor &other)
1249 : index_set(other.index_set)
1250 , range_idx(other.range_idx)
1251{
1253 ExcMessage("invalid iterator"));
1254}
1255
1256
1257
1260{
1261 Assert(is_valid(), ExcMessage("invalid iterator"));
1262 return index_set->ranges[range_idx].end - index_set->ranges[range_idx].begin;
1263}
1264
1265
1266
1267inline bool
1269{
1270 return index_set != nullptr && range_idx < index_set->n_intervals();
1271}
1272
1273
1274
1277{
1278 Assert(is_valid(), ExcMessage("invalid iterator"));
1279 return {index_set, range_idx, index_set->ranges[range_idx].begin};
1280}
1281
1282
1283
1286{
1287 Assert(is_valid(), ExcMessage("invalid iterator"));
1288
1289 // point to first index in next interval unless we are the last interval.
1290 if (range_idx < index_set->ranges.size() - 1)
1291 return {index_set, range_idx + 1, index_set->ranges[range_idx + 1].begin};
1292 else
1293 return index_set->end();
1294}
1295
1296
1297
1300{
1301 Assert(is_valid(), ExcMessage("invalid iterator"));
1302
1303 return index_set->ranges[range_idx].end - 1;
1304}
1305
1306
1307
1310{
1311 index_set = other.index_set;
1312 range_idx = other.range_idx;
1313 Assert(range_idx == numbers::invalid_dof_index || is_valid(),
1314 ExcMessage("invalid iterator"));
1315 return *this;
1316}
1317
1318
1319
1320inline bool
1322 const IndexSet::IntervalAccessor &other) const
1323{
1324 Assert(index_set == other.index_set,
1325 ExcMessage(
1326 "Can not compare accessors pointing to different IndexSets"));
1327 return range_idx == other.range_idx;
1328}
1329
1330
1331
1332inline bool
1334 const IndexSet::IntervalAccessor &other) const
1335{
1336 Assert(index_set == other.index_set,
1337 ExcMessage(
1338 "Can not compare accessors pointing to different IndexSets"));
1339 return range_idx < other.range_idx;
1340}
1341
1342
1343
1344inline void
1346{
1347 Assert(
1348 is_valid(),
1349 ExcMessage(
1350 "Impossible to advance an IndexSet::IntervalIterator that is invalid"));
1351 ++range_idx;
1352
1353 // set ourselves to invalid if we walk off the end
1354 if (range_idx >= index_set->ranges.size())
1355 range_idx = numbers::invalid_dof_index;
1356}
1357
1358
1359/* IntervalIterator */
1360
1362 const IndexSet *idxset,
1363 const IndexSet::size_type range_idx)
1364 : accessor(idxset, range_idx)
1365{}
1366
1367
1368
1370 : accessor(nullptr)
1371{}
1372
1373
1374
1376 : accessor(idxset)
1377{}
1378
1379
1380
1383{
1384 accessor.advance();
1385 return *this;
1386}
1387
1388
1389
1392{
1393 const IndexSet::IntervalIterator iter = *this;
1394 accessor.advance();
1395 return iter;
1396}
1397
1398
1399
1400inline const IndexSet::IntervalAccessor &
1402{
1403 return accessor;
1404}
1405
1406
1407
1408inline const IndexSet::IntervalAccessor *
1410{
1411 return &accessor;
1412}
1413
1414
1415
1416inline bool
1418 const IndexSet::IntervalIterator &other) const
1419{
1420 return accessor == other.accessor;
1421}
1422
1423
1424
1425inline bool
1427 const IndexSet::IntervalIterator &other) const
1428{
1429 return !(*this == other);
1430}
1431
1432
1433
1434inline bool
1436 const IndexSet::IntervalIterator &other) const
1437{
1438 return accessor < other.accessor;
1439}
1440
1441
1442
1443inline int
1445 const IndexSet::IntervalIterator &other) const
1446{
1447 Assert(accessor.index_set == other.accessor.index_set,
1448 ExcMessage(
1449 "Can not compare iterators belonging to different IndexSets"));
1450
1451 const size_type lhs = (accessor.range_idx == numbers::invalid_dof_index) ?
1452 accessor.index_set->ranges.size() :
1453 accessor.range_idx;
1454 const size_type rhs =
1456 accessor.index_set->ranges.size() :
1457 other.accessor.range_idx;
1458
1459 if (lhs > rhs)
1460 return static_cast<int>(lhs - rhs);
1461 else
1462 return -static_cast<int>(rhs - lhs);
1463}
1464
1465
1466
1467/* ElementIterator */
1468
1470 const IndexSet *idxset,
1471 const IndexSet::size_type range_idx,
1472 const IndexSet::size_type index)
1473 : index_set(idxset)
1474 , range_idx(range_idx)
1475 , idx(index)
1476{
1477 Assert(range_idx < index_set->ranges.size(),
1478 ExcMessage(
1479 "Invalid range index for IndexSet::ElementIterator constructor."));
1480 Assert(
1481 idx >= index_set->ranges[range_idx].begin &&
1482 idx < index_set->ranges[range_idx].end,
1484 "Invalid index argument for IndexSet::ElementIterator constructor."));
1485}
1486
1487
1488
1490 : index_set(idxset)
1491 , range_idx(numbers::invalid_dof_index)
1492 , idx(numbers::invalid_dof_index)
1493{}
1494
1495
1496
1497inline bool
1499{
1500 Assert((range_idx == numbers::invalid_dof_index &&
1502 (range_idx < index_set->ranges.size() &&
1503 idx < index_set->ranges[range_idx].end),
1504 ExcInternalError("Invalid ElementIterator state."));
1505
1506 return (range_idx < index_set->ranges.size() &&
1507 idx < index_set->ranges[range_idx].end);
1508}
1509
1510
1511
1514{
1515 Assert(
1516 is_valid(),
1517 ExcMessage(
1518 "Impossible to dereference an IndexSet::ElementIterator that is invalid"));
1519 return idx;
1520}
1521
1522
1523
1524inline bool
1526 const IndexSet::ElementIterator &other) const
1527{
1528 Assert(index_set == other.index_set,
1529 ExcMessage(
1530 "Can not compare iterators belonging to different IndexSets"));
1531 return range_idx == other.range_idx && idx == other.idx;
1532}
1533
1534
1535
1536inline void
1538{
1539 Assert(
1540 is_valid(),
1541 ExcMessage(
1542 "Impossible to advance an IndexSet::ElementIterator that is invalid"));
1543 if (idx < index_set->ranges[range_idx].end)
1544 ++idx;
1545 // end of this range?
1546 if (idx == index_set->ranges[range_idx].end)
1547 {
1548 // point to first element in next interval if possible
1549 if (range_idx < index_set->ranges.size() - 1)
1550 {
1551 ++range_idx;
1552 idx = index_set->ranges[range_idx].begin;
1553 }
1554 else
1555 {
1556 // we just fell off the end, set to invalid:
1557 range_idx = numbers::invalid_dof_index;
1559 }
1560 }
1561}
1562
1563
1564
1567{
1568 advance();
1569 return *this;
1570}
1571
1572
1573
1576{
1577 const IndexSet::ElementIterator it = *this;
1578 advance();
1579 return it;
1580}
1581
1582
1583
1584inline bool
1586 const IndexSet::ElementIterator &other) const
1587{
1588 return !(*this == other);
1589}
1590
1591
1592
1593inline bool
1595 const IndexSet::ElementIterator &other) const
1596{
1597 Assert(index_set == other.index_set,
1598 ExcMessage(
1599 "Can not compare iterators belonging to different IndexSets"));
1600 return range_idx < other.range_idx ||
1601 (range_idx == other.range_idx && idx < other.idx);
1602}
1603
1604
1605
1606inline std::ptrdiff_t
1608 const IndexSet::ElementIterator &other) const
1609{
1610 Assert(index_set == other.index_set,
1611 ExcMessage(
1612 "Can not compare iterators belonging to different IndexSets"));
1613 if (*this == other)
1614 return 0;
1615 if (!(*this < other))
1616 return -(other - *this);
1617
1618 // only other can be equal to end() because of the checks above.
1619 Assert(is_valid(), ExcInternalError());
1620
1621 // Note: we now compute how far advance *this in "*this < other" to get other,
1622 // so we need to return -c at the end.
1623
1624 // first finish the current range:
1625 std::ptrdiff_t c = index_set->ranges[range_idx].end - idx;
1626
1627 // now walk in steps of ranges (need to start one behind our current one):
1628 for (size_type range = range_idx + 1;
1629 range < index_set->ranges.size() && range <= other.range_idx;
1630 ++range)
1631 c += index_set->ranges[range].end - index_set->ranges[range].begin;
1632
1633 Assert(
1634 other.range_idx < index_set->ranges.size() ||
1636 ExcMessage(
1637 "Inconsistent iterator state. Did you invalidate iterators by modifying the IndexSet?"));
1638
1639 // We might have walked too far because we went until the end of
1640 // other.range_idx, so walk backwards to other.idx:
1642 c -= index_set->ranges[other.range_idx].end - other.idx;
1643
1644 return -c;
1645}
1646
1647
1648/* Range */
1649
1651 : begin(numbers::invalid_dof_index)
1652 , end(numbers::invalid_dof_index)
1653 , nth_index_in_set(numbers::invalid_dof_index)
1654{}
1655
1656
1657
1659 : begin(i1)
1660 , end(i2)
1661 , nth_index_in_set(numbers::invalid_dof_index)
1662{}
1663
1664
1665
1666/* IndexSet itself */
1667
1669 : is_compressed(true)
1670 , index_space_size(0)
1671 , largest_range(numbers::invalid_unsigned_int)
1672{}
1673
1674
1675
1677 : is_compressed(true)
1678 , index_space_size(size)
1679 , largest_range(numbers::invalid_unsigned_int)
1680{}
1681
1682
1683
1684inline IndexSet::IndexSet(IndexSet &&is) noexcept
1685 : ranges(std::move(is.ranges))
1686 , is_compressed(is.is_compressed)
1687 , index_space_size(is.index_space_size)
1688 , largest_range(is.largest_range)
1689{
1690 is.ranges.clear();
1691 is.is_compressed = true;
1692 is.index_space_size = 0;
1693 is.largest_range = numbers::invalid_unsigned_int;
1694
1695 compress();
1696}
1697
1698
1699
1700inline IndexSet &
1702{
1703 ranges = std::move(is.ranges);
1704 is_compressed = is.is_compressed;
1705 index_space_size = is.index_space_size;
1706 largest_range = is.largest_range;
1707
1708 is.ranges.clear();
1709 is.is_compressed = true;
1710 is.index_space_size = 0;
1711 is.largest_range = numbers::invalid_unsigned_int;
1712
1713 compress();
1714
1715 return *this;
1716}
1717
1718
1719
1722{
1723 compress();
1724 if (ranges.size() > 0)
1725 return {this, 0, ranges[0].begin};
1726 else
1727 return end();
1728}
1729
1730
1731
1734{
1735 compress();
1736 return IndexSet::ElementIterator(this);
1737}
1738
1739
1740
1743{
1744 compress();
1745 if (ranges.size() > 0)
1746 return IndexSet::IntervalIterator(this, 0);
1747 else
1748 return end_intervals();
1749}
1750
1751
1752
1755{
1756 compress();
1757 return IndexSet::IntervalIterator(this);
1758}
1759
1760
1761
1762inline void
1764{
1765 // reset so that there are no indices in the set any more; however,
1766 // as documented, the index set retains its size
1767 ranges.clear();
1768 is_compressed = true;
1770}
1771
1772
1773
1774inline void
1776{
1777 Assert(ranges.empty(),
1778 ExcMessage("This function can only be called if the current "
1779 "object does not yet contain any elements."));
1780 index_space_size = sz;
1781 is_compressed = true;
1782}
1783
1784
1785
1788{
1789 return index_space_size;
1790}
1791
1792
1793
1794inline void
1796{
1797 if (is_compressed == true)
1798 return;
1799
1800 do_compress();
1801}
1802
1803
1804
1805inline void
1807{
1808 add_range(index, index + 1);
1809}
1810
1811
1812
1813inline void
1815{
1818 ExcIndexRangeType<size_type>(begin, 0, index_space_size));
1820 ExcIndexRangeType<size_type>(end, 0, index_space_size + 1));
1822
1823 if (begin != end)
1824 {
1825 // the new index might be larger than the last index present in the
1826 // ranges. Then we can skip the binary search
1827 if (ranges.empty() || begin > ranges.back().end)
1828 ranges.emplace_back(begin, end);
1829 else if (begin == ranges.back().end)
1830 ranges.back().end = end;
1831 else
1833
1834 is_compressed = false;
1835 }
1836}
1837
1838
1839
1840template <typename ForwardIterator>
1841inline void
1842IndexSet::add_indices(const ForwardIterator &begin, const ForwardIterator &end)
1843{
1844 if (begin == end)
1845 return;
1846
1847 // identify ranges in the given iterator range by checking whether some
1848 // indices happen to be consecutive. to avoid quadratic complexity when
1849 // calling add_range many times (as add_range() going into the middle of an
1850 // already existing range must shift entries around), we first collect a
1851 // vector of ranges.
1852 boost::container::small_vector<std::pair<size_type, size_type>, 200>
1853 tmp_ranges;
1854 bool ranges_are_sorted = true;
1855 for (ForwardIterator p = begin; p != end;)
1856 {
1857 // Starting with the current iterator 'p', find an iterator
1858 // 'q' so that the indices pointed to by the iterators in
1859 // the range [p,q) are consecutive. These indices then form
1860 // a range that is contiguous, and that can be added all
1861 // at once.
1862 const size_type begin_index = *p;
1863 size_type end_index = begin_index + 1;
1864
1865 // Start looking at the position after 'p', and keep iterating while
1866 // 'q' points to a duplicate of 'p':
1867 ForwardIterator q = p;
1868 ++q;
1869 while ((q != end) && (*q == *p))
1870 ++q;
1871
1872 // Now we know that 'q' is either past the end, or points to a value
1873 // other than 'p'. If it points to 'end_index', we are still good with
1874 // a contiguous range; then increment the end index of that range, and
1875 // move to the next iterator that is not a duplicate of what
1876 // we were just looking at:
1877 while ((q != end) && (static_cast<size_type>(*q) == end_index))
1878 {
1879 ++q;
1880 while ((q != end) && (static_cast<size_type>(*q) == end_index))
1881 ++q;
1882
1883 ++end_index;
1884 }
1885
1886 // Add this range:
1887 tmp_ranges.emplace_back(begin_index, end_index);
1888
1889 // Then move on to the next element in the input range.
1890 // If the starting index of the next go-around of the for loop is less
1891 // than the end index of the one just identified, then we will have at
1892 // least one pair of ranges that are not sorted, and consequently the
1893 // whole collection of ranges is not sorted.
1894 p = q;
1895 if ((p != end) && (static_cast<size_type>(*p) < end_index))
1896 ranges_are_sorted = false;
1897 }
1898
1899 add_ranges_internal(tmp_ranges, ranges_are_sorted);
1900}
1901
1902
1903
1904inline bool
1906{
1907 if (ranges.empty() == false)
1908 {
1909 compress();
1910
1911 // fast check whether the index is in the largest range
1913 if (index >= ranges[largest_range].begin &&
1914 index < ranges[largest_range].end)
1915 return true;
1916 else if (ranges.size() > 1)
1917 return is_element_binary_search(index);
1918 else
1919 return false;
1920 }
1921 else
1922 return false;
1923}
1924
1925
1926
1927inline bool
1929{
1930 compress();
1931 return (ranges.size() <= 1);
1932}
1933
1934
1935
1936inline bool
1938{
1939 return ranges.empty();
1940}
1941
1942
1943
1946{
1947 // make sure we have non-overlapping ranges
1948 compress();
1949
1950 size_type v = 0;
1951 if (!ranges.empty())
1952 {
1953 const Range &r = ranges.back();
1954 v = r.nth_index_in_set + r.end - r.begin;
1955 }
1956
1957 if constexpr (running_in_debug_mode())
1958 {
1959 size_type s = 0;
1960 for (const auto &range : ranges)
1961 s += (range.end - range.begin);
1962 Assert(s == v, ExcInternalError());
1963 }
1964
1965 return v;
1966}
1967
1968
1969
1970inline unsigned int
1972{
1973 compress();
1974 return ranges.size();
1975}
1976
1977
1978
1981{
1982 Assert(ranges.empty() == false, ExcMessage("IndexSet cannot be empty."));
1983
1984 compress();
1985 const std::vector<Range>::const_iterator main_range =
1986 ranges.begin() + largest_range;
1987
1988 return main_range->nth_index_in_set;
1989}
1990
1991
1992
1995{
1997
1998 compress();
1999
2000 // first check whether the index is in the largest range
2002 const auto main_range = ranges.begin() + largest_range;
2003 if (n >= main_range->nth_index_in_set &&
2004 n < main_range->nth_index_in_set + (main_range->end - main_range->begin))
2005 return main_range->begin + (n - main_range->nth_index_in_set);
2006 else
2008}
2009
2010
2011
2014{
2015 // to make this call thread-safe, compress() must not be called through this
2016 // function
2017 Assert(is_compressed == true, ExcMessage("IndexSet must be compressed."));
2018 AssertIndexRange(n, size());
2019
2020 // return immediately if the index set is empty
2021 if (is_empty())
2023
2024 // check whether the index is in the largest range. use the result to
2025 // perform a one-sided binary search afterward
2028 return (n - ranges[largest_range].begin) +
2029 ranges[largest_range].nth_index_in_set;
2030 else if (ranges.size() > 1)
2032 else
2034}
2035
2036
2037
2038inline bool
2040{
2041 // If one of the two index sets has size zero, the other one has to
2042 // have size zero as well:
2043 if (size() == 0)
2044 return (is.size() == 0);
2045 if (is.size() == 0)
2046 return (size() == 0);
2047
2048 // Otherwise, they must have the same size (see the documentation):
2049 Assert(size() == is.size(), ExcDimensionMismatch(size(), is.size()));
2050
2051 compress();
2052 is.compress();
2053
2054 return (ranges == is.ranges);
2055}
2056
2057
2058
2059inline bool
2061{
2062 // If one of the two index sets has size zero, the other one has to
2063 // have a non-zero size for inequality:
2064 if (size() == 0)
2065 return (is.size() != 0);
2066 if (is.size() == 0)
2067 return (size() != 0);
2068
2069 // Otherwise, they must have the same size (see the documentation):
2070 Assert(size() == is.size(), ExcDimensionMismatch(size(), is.size()));
2071
2072 compress();
2073 is.compress();
2074
2075 return (ranges != is.ranges);
2076}
2077
2078
2079
2080template <typename Vector>
2081void
2083{
2084 Assert(vector.size() == size(), ExcDimensionMismatch(vector.size(), size()));
2085
2086 compress();
2087 // first fill all elements of the vector with zeroes.
2088 std::fill(vector.begin(), vector.end(), 0);
2089
2090 // then write ones into the elements whose indices are contained in the
2091 // index set
2092 for (const auto &range : ranges)
2093 for (size_type i = range.begin; i < range.end; ++i)
2094 vector[i] = 1;
2095}
2096
2097
2098
2099template <typename StreamType>
2100inline void
2101IndexSet::print(StreamType &out) const
2102{
2103 compress();
2104 out << '{';
2105 std::vector<Range>::const_iterator p;
2106 for (p = ranges.begin(); p != ranges.end(); ++p)
2107 {
2108 if (p->end - p->begin == 1)
2109 out << p->begin;
2110 else
2111 out << '[' << p->begin << ',' << p->end - 1 << ']';
2112
2113 if (p != --ranges.end())
2114 out << ", ";
2115 }
2116 out << '}' << std::endl;
2117}
2118
2119
2120
2121template <class Archive>
2122inline void
2123IndexSet::Range::serialize(Archive &ar, const unsigned int)
2124{
2126}
2127
2128
2129
2130template <class Archive>
2131inline void
2132IndexSet::serialize(Archive &ar, const unsigned int)
2133{
2135}
2136
2138
2139#endif
size_type operator*() const
Definition index_set.h:1513
bool operator==(const ElementIterator &) const
Definition index_set.h:1525
ElementIterator(const IndexSet *idxset, const size_type range_idx, const size_type index)
Definition index_set.h:1469
std::ptrdiff_t difference_type
Definition index_set.h:950
ElementIterator & operator++()
Definition index_set.h:1566
bool operator<(const ElementIterator &) const
Definition index_set.h:1594
bool operator!=(const ElementIterator &) const
Definition index_set.h:1585
std::ptrdiff_t operator-(const ElementIterator &p) const
Definition index_set.h:1607
std::forward_iterator_tag iterator_category
Definition index_set.h:948
const IndexSet * index_set
Definition index_set.h:964
size_type last() const
Definition index_set.h:1299
ElementIterator end() const
Definition index_set.h:1285
size_type n_elements() const
Definition index_set.h:1259
bool operator==(const IntervalAccessor &other) const
Definition index_set.h:1321
IntervalAccessor & operator=(const IntervalAccessor &other)
Definition index_set.h:1309
bool operator<(const IntervalAccessor &other) const
Definition index_set.h:1333
IntervalAccessor(const IndexSet *idxset, const size_type range_idx)
Definition index_set.h:1228
const IndexSet * index_set
Definition index_set.h:755
ElementIterator begin() const
Definition index_set.h:1276
std::ptrdiff_t difference_type
Definition index_set.h:858
const IntervalAccessor & operator*() const
Definition index_set.h:1401
IntervalIterator(const IntervalIterator &other)=default
bool operator==(const IntervalIterator &) const
Definition index_set.h:1417
int operator-(const IntervalIterator &p) const
Definition index_set.h:1444
bool operator<(const IntervalIterator &) const
Definition index_set.h:1435
std::forward_iterator_tag iterator_category
Definition index_set.h:856
IntervalIterator & operator=(const IntervalIterator &other)=default
IntervalIterator & operator++()
Definition index_set.h:1382
const IntervalAccessor * operator->() const
Definition index_set.h:1409
IntervalAccessor accessor
Definition index_set.h:866
bool operator!=(const IntervalIterator &) const
Definition index_set.h:1426
bool is_subset_of(const IndexSet &other) const
Definition index_set.cc:711
bool is_element_binary_search(const size_type local_index) const
Definition index_set.cc:806
size_type index_within_set_binary_search(const size_type global_index) const
Definition index_set.cc:859
size_type largest_range
Definition index_set.h:1136
IS make_petsc_is(const MPI_Comm communicator=MPI_COMM_WORLD) const
bool is_ascending_and_one_to_one(const MPI_Comm communicator) const
bool is_contiguous() const
Definition index_set.h:1928
unsigned int n_intervals() const
Definition index_set.h:1971
Tpetra::Map< int, types::signed_global_dof_index, NodeType > make_tpetra_map(const MPI_Comm communicator=MPI_COMM_WORLD, const bool overlapping=false) const
Definition index_set.cc:962
IndexSet(const IndexSet &)=default
IntervalIterator end_intervals() const
Definition index_set.h:1754
void do_compress() const
Definition index_set.cc:141
ElementIterator at(const size_type global_index) const
Definition index_set.cc:881
size_type size() const
Definition index_set.h:1787
void fill_index_vector(std::vector< size_type > &indices) const
Definition index_set.cc:950
bool is_empty() const
Definition index_set.h:1937
size_type index_within_set(const size_type global_index) const
Definition index_set.h:2013
std::vector< IndexSet > split_by_block(const std::vector< types::global_dof_index > &n_indices_per_block) const
Definition index_set.cc:448
size_type n_elements() const
Definition index_set.h:1945
bool operator==(const IndexSet &is) const
Definition index_set.h:2039
void add_range_lower_bound(const Range &range)
Definition index_set.cc:599
bool is_element(const size_type index) const
Definition index_set.h:1905
void serialize(Archive &ar, const unsigned int version)
Definition index_set.h:2132
ElementIterator begin() const
Definition index_set.h:1721
size_type pop_front()
Definition index_set.cc:577
signed int value_type
Definition index_set.h:100
void set_size(const size_type size)
Definition index_set.h:1775
bool operator!=(const IndexSet &is) const
Definition index_set.h:2060
void read(std::istream &in)
Definition index_set.cc:750
Epetra_Map make_trilinos_map(const MPI_Comm communicator=MPI_COMM_WORLD, const bool overlapping=false) const
void clear()
Definition index_set.h:1763
size_type largest_range_starting_index() const
Definition index_set.h:1980
void add_index(const size_type index)
Definition index_set.h:1806
void write(std::ostream &out) const
Definition index_set.cc:735
void block_read(std::istream &in)
Definition index_set.cc:786
bool is_compressed
Definition index_set.h:1119
void add_ranges_internal(boost::container::small_vector< std::pair< size_type, size_type >, 200 > &tmp_ranges, const bool ranges_are_sorted)
Definition index_set.cc:615
IntervalIterator begin_intervals() const
Definition index_set.h:1742
IndexSet & operator=(const IndexSet &)=default
void fill_binary_vector(VectorType &vector) const
std::vector< Range > ranges
Definition index_set.h:1109
void subtract_set(const IndexSet &other)
Definition index_set.cc:478
ElementIterator end() const
Definition index_set.h:1733
Threads::Mutex compress_mutex
Definition index_set.h:1142
IndexSet complete_index_set(const IndexSet::size_type N)
Definition index_set.h:1215
size_type index_space_size
Definition index_set.h:1125
void block_write(std::ostream &out) const
Definition index_set.cc:772
IndexSet get_view(const size_type begin, const size_type end) const
Definition index_set.cc:277
void add_range(const size_type begin, const size_type end)
Definition index_set.h:1814
size_type nth_index_in_set(const size_type local_index) const
Definition index_set.h:1994
std::size_t memory_consumption() const
void print(StreamType &out) const
Definition index_set.h:2101
size_type nth_index_in_set_binary_search(const size_type local_index) const
Definition index_set.cc:842
void compress() const
Definition index_set.h:1795
size_type pop_back()
Definition index_set.cc:559
std::vector< size_type > get_index_vector() const
Definition index_set.cc:931
Teuchos::RCP< Tpetra::Map< int, types::signed_global_dof_index, NodeType > > make_tpetra_map_rcp(const MPI_Comm communicator=MPI_COMM_WORLD, const bool overlapping=false) const
Definition index_set.cc:972
types::global_dof_index size_type
Definition index_set.h:81
void add_indices(const ForwardIterator &begin, const ForwardIterator &end)
Definition index_set.h:1842
IndexSet operator&(const IndexSet &is) const
virtual size_type size() const override
iterator end()
iterator begin()
#define DEAL_II_DEPRECATED
Definition config.h:280
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:35
constexpr bool running_in_debug_mode()
Definition config.h:73
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:36
#define Assert(cond, exc)
static ::ExceptionBase & ExcIndexNotPresent(size_type arg1)
#define AssertIndexRange(index, range)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
#define DeclException1(Exception1, type1, outsequence)
static ::ExceptionBase & ExcMessage(std::string arg1)
std::size_t size
Definition mpi.cc:745
Tpetra::KokkosCompat::KokkosDeviceWrapperNode< typename MemorySpace::kokkos_space::execution_space, typename MemorySpace::kokkos_space > NodeType
constexpr types::global_dof_index invalid_dof_index
Definition types.h:263
constexpr unsigned int invalid_unsigned_int
Definition types.h:232
unsigned int global_dof_index
Definition types.h:90
static bool end_compare(const IndexSet::Range &x, const IndexSet::Range &y)
Definition index_set.h:1067
static bool nth_index_compare(const IndexSet::Range &x, const IndexSet::Range &y)
Definition index_set.h:1073
friend bool operator==(const Range &range_1, const Range &range_2)
Definition index_set.h:1080
size_type end
Definition index_set.h:1035
size_type nth_index_in_set
Definition index_set.h:1037
static std::size_t memory_consumption()
Definition index_set.h:1086
size_type begin
Definition index_set.h:1034
void serialize(Archive &ar, const unsigned int version)
Definition index_set.h:2123
friend bool operator<(const Range &range_1, const Range &range_2)
Definition index_set.h:1059
void advance(std::tuple< I1, I2 > &t, const unsigned int n)