47#define BOOST_BIND_GLOBAL_PLACEHOLDERS
48#include <boost/config.hpp>
49#include <boost/graph/adjacency_list.hpp>
50#include <boost/graph/bandwidth.hpp>
51#include <boost/graph/cuthill_mckee_ordering.hpp>
52#include <boost/graph/king_ordering.hpp>
53#include <boost/graph/minimum_degree_ordering.hpp>
54#include <boost/graph/properties.hpp>
55#include <boost/random.hpp>
56#include <boost/random/uniform_int_distribution.hpp>
58#undef BOOST_BIND_GLOBAL_PLACEHOLDERS
75 using namespace ::
boost;
77 using Graph = adjacency_list<vecS,
80 property<vertex_color_t,
82 property<vertex_degree_t, int>>>;
83 using Vertex = graph_traits<Graph>::vertex_descriptor;
84 using size_type = graph_traits<Graph>::vertices_size_type;
86 using Pair = std::pair<size_type, size_type>;
92 template <
int dim,
int spacedim>
95 const bool use_constraints,
98 boosttypes::vertex_degree_t>::type
113 for (
unsigned int row = 0; row < dsp.
n_rows(); ++row)
114 for (
unsigned int col = 0; col < dsp.
row_length(row); ++col)
118 boosttypes::graph_traits<boosttypes::Graph>::vertex_iterator ui, ui_end;
120 graph_degree = get(::boost::vertex_degree, graph);
121 for (::boost::tie(ui, ui_end) =
vertices(graph); ui != ui_end; ++ui)
122 graph_degree[*ui] = degree(*ui, graph);
127 template <
int dim,
int spacedim>
130 const bool reversed_numbering,
131 const bool use_constraints)
133 std::vector<types::global_dof_index> renumbering(
147 template <
int dim,
int spacedim>
151 const bool reversed_numbering,
152 const bool use_constraints)
156 boosttypes::vertex_degree_t>::type graph_degree;
161 boosttypes::vertex_index_t>::type index_map =
162 get(::boost::vertex_index, graph);
165 std::vector<boosttypes::Vertex> inv_perm(num_vertices(graph));
167 if (reversed_numbering ==
false)
168 ::boost::cuthill_mckee_ordering(graph,
170 get(::boost::vertex_color, graph),
171 make_degree_map(graph));
173 ::boost::cuthill_mckee_ordering(graph,
175 get(::boost::vertex_color, graph),
176 make_degree_map(graph));
179 new_dof_indices[index_map[inv_perm[c]]] = c;
181 Assert(std::find(new_dof_indices.begin(),
182 new_dof_indices.end(),
189 template <
int dim,
int spacedim>
192 const bool reversed_numbering,
193 const bool use_constraints)
195 std::vector<types::global_dof_index> renumbering(
209 template <
int dim,
int spacedim>
213 const bool reversed_numbering,
214 const bool use_constraints)
218 boosttypes::vertex_degree_t>::type graph_degree;
223 boosttypes::vertex_index_t>::type index_map =
224 get(::boost::vertex_index, graph);
227 std::vector<boosttypes::Vertex> inv_perm(num_vertices(graph));
229 if (reversed_numbering ==
false)
232 ::boost::king_ordering(graph, inv_perm.begin());
235 new_dof_indices[index_map[inv_perm[c]]] = c;
237 Assert(std::find(new_dof_indices.begin(),
238 new_dof_indices.end(),
245 template <
int dim,
int spacedim>
248 const bool reversed_numbering,
249 const bool use_constraints)
251 std::vector<types::global_dof_index> renumbering(
265 template <
int dim,
int spacedim>
268 std::vector<types::global_dof_index> &new_dof_indices,
270 const bool reversed_numbering,
271 const bool use_constraints)
273 (void)use_constraints;
282 using namespace ::
boost;
287 using Graph = adjacency_list<vecS, vecS, directedS>;
289 int n = dof_handler.
n_dofs();
293 std::vector<::types::global_dof_index> dofs_on_this_cell;
297 const unsigned int dofs_per_cell = cell->get_fe().n_dofs_per_cell();
299 dofs_on_this_cell.resize(dofs_per_cell);
301 cell->get_active_or_mg_dof_indices(dofs_on_this_cell);
302 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
303 for (
unsigned int j = 0; j < dofs_per_cell; ++j)
304 if (dofs_on_this_cell[i] > dofs_on_this_cell[j])
306 add_edge(dofs_on_this_cell[i], dofs_on_this_cell[j], G);
307 add_edge(dofs_on_this_cell[j], dofs_on_this_cell[i], G);
312 using Vector = std::vector<int>;
315 Vector inverse_perm(n, 0);
320 Vector supernode_sizes(n, 1);
323 ::boost::property_map<Graph, vertex_index_t>::type
id =
324 get(vertex_index, G);
330 minimum_degree_ordering(
332 make_iterator_property_map(degree.
begin(),
id, degree[0]),
335 make_iterator_property_map(supernode_sizes.
begin(),
342 for (
int i = 0; i < n; ++i)
352 if (reversed_numbering ==
true)
353 std::copy(perm.
begin(), perm.
end(), new_dof_indices.begin());
355 std::copy(inverse_perm.
begin(),
357 new_dof_indices.begin());
364 template <
int dim,
int spacedim>
367 const bool reversed_numbering,
368 const bool use_constraints,
369 const std::vector<types::global_dof_index> &starting_indices)
371 std::vector<types::global_dof_index> renumbering(
388 template <
int dim,
int spacedim>
391 std::vector<types::global_dof_index> &new_indices,
393 const bool reversed_numbering,
394 const bool use_constraints,
395 const std::vector<types::global_dof_index> &starting_indices,
396 const unsigned int level)
398 const bool reorder_level_dofs =
413 if (reorder_level_dofs ==
true)
417 const IndexSet locally_relevant_dofs =
418 (reorder_level_dofs ==
false ?
421 const IndexSet &locally_owned_dofs =
431 constraints.
reinit(locally_owned_dofs, locally_relevant_dofs);
442 locally_owned_dofs.
size());
443 if (reorder_level_dofs ==
false)
455 if (reversed_numbering)
468 const IndexSet locally_active_dofs =
469 (reorder_level_dofs ==
false ?
473 bool needs_locally_active =
false;
474 for (
const auto starting_index : starting_indices)
476 if ((needs_locally_active ==
478 (locally_owned_dofs.
is_element(starting_index) ==
false))
481 locally_active_dofs.
is_element(starting_index),
483 "You specified global degree of freedom " +
484 std::to_string(starting_index) +
485 " as a starting index, but this index is not among the "
486 "locally active ones on this processor, as required "
487 "for this function."));
488 needs_locally_active =
true;
493 (needs_locally_active ? locally_active_dofs : locally_owned_dofs);
504 index_set_to_use.
size(),
506 if (reorder_level_dofs ==
false)
517 std::vector<types::global_dof_index> row_entries;
518 for (
unsigned int i = 0; i < index_set_to_use.
n_elements(); ++i)
522 const unsigned int row_length = dsp.
row_length(row);
524 for (
unsigned int j = 0; j < row_length; ++j)
527 if (col != row && index_set_to_use.
is_element(col))
537 std::vector<types::global_dof_index> local_starting_indices(
538 starting_indices.size());
539 for (
unsigned int i = 0; i < starting_indices.size(); ++i)
540 local_starting_indices[i] =
545 std::vector<types::global_dof_index> my_new_indices(
549 local_starting_indices);
550 if (reversed_numbering)
559 if (needs_locally_active ==
true)
562 IndexSet active_but_not_owned_dofs = locally_active_dofs;
563 active_but_not_owned_dofs.
subtract_set(locally_owned_dofs);
565 std::set<types::global_dof_index> erase_these_indices;
566 for (
const auto p : active_but_not_owned_dofs)
571 erase_these_indices.insert(my_new_indices[index]);
574 Assert(erase_these_indices.size() ==
577 Assert(
static_cast<unsigned int>(
578 std::count(my_new_indices.begin(),
579 my_new_indices.end(),
585 std::vector<types::global_dof_index> translate_indices(
586 my_new_indices.size());
588 std::set<types::global_dof_index>::const_iterator
589 next_erased_index = erase_these_indices.begin();
591 for (
unsigned int i = 0; i < translate_indices.size(); ++i)
592 if ((next_erased_index != erase_these_indices.end()) &&
593 (*next_erased_index == i))
600 translate_indices[i] = next_new_index;
610 new_indices.reserve(locally_owned_dofs.
n_elements());
611 for (
const auto &p : my_new_indices)
616 new_indices.push_back(translate_indices[p]);
622 new_indices = std::move(my_new_indices);
635 template <
int dim,
int spacedim>
638 const unsigned int level,
639 const bool reversed_numbering,
640 const std::vector<types::global_dof_index> &starting_indices)
645 std::vector<types::global_dof_index> new_indices(
664 template <
int dim,
int spacedim>
667 const std::vector<unsigned int> &component_order_arg)
669 std::vector<types::global_dof_index> renumbering(
695 (result <= dof_handler.
n_dofs())),
703 template <
int dim,
int spacedim>
706 const unsigned int level,
707 const std::vector<unsigned int> &component_order_arg)
712 std::vector<types::global_dof_index> renumbering(
723 renumbering, start, end, component_order_arg,
true);
750 template <
int dim,
int spacedim,
typename CellIterator>
753 const CellIterator &start,
755 const std::vector<unsigned int> &component_order_arg,
756 const bool is_level_operation)
759 start->get_dof_handler().get_fe_collection();
765 new_indices.resize(0);
772 const IndexSet &locally_owned_dofs =
774 start->get_dof_handler().locally_owned_mg_dofs(start->level()) :
775 start->get_dof_handler().locally_owned_dofs();
779 std::vector<unsigned int> component_order(component_order_arg);
784 if (component_order.empty())
785 for (
unsigned int i = 0; i < fe_collection.
n_components(); ++i)
786 component_order.push_back(i);
792 for (
const unsigned int component : component_order)
800 std::vector<types::global_dof_index> local_dof_indices;
812 std::vector<std::vector<unsigned int>> component_list(fe_collection.
size());
813 for (
unsigned int f = 0; f < fe_collection.
size(); ++f)
817 component_list[f].resize(dofs_per_cell);
818 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
820 component_list[f][i] =
824 const unsigned int comp =
830 component_list[f][i] = component_order[comp];
845 std::vector<std::vector<types::global_dof_index>> component_to_dof_map(
847 for (CellIterator cell = start; cell != end; ++cell)
849 if (is_level_operation)
852 if (!cell->is_locally_owned_on_level())
859 if (!cell->is_locally_owned())
863 if (is_level_operation)
865 cell->level() == start->level(),
867 "Multigrid renumbering in compute_component_wise() needs to be applied to a single level!"));
873 const unsigned int dofs_per_cell =
874 fe_collection[fe_index].n_dofs_per_cell();
875 local_dof_indices.resize(dofs_per_cell);
876 cell->get_active_or_mg_dof_indices(local_dof_indices);
878 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
879 if (locally_owned_dofs.
is_element(local_dof_indices[i]))
880 component_to_dof_map[component_list[fe_index][i]].push_back(
881 local_dof_indices[i]);
907 for (
unsigned int component = 0; component < fe_collection.
n_components();
910 std::sort(component_to_dof_map[component].begin(),
911 component_to_dof_map[component].end());
912 component_to_dof_map[component].erase(
913 std::unique(component_to_dof_map[component].begin(),
914 component_to_dof_map[component].end()),
915 component_to_dof_map[component].end());
920 const unsigned int n_buckets = fe_collection.
n_components();
921 std::vector<types::global_dof_index> shifts(n_buckets);
925 &start->get_dof_handler().get_triangulation())))
927#ifdef DEAL_II_WITH_MPI
928 std::vector<types::global_dof_index> local_dof_count(n_buckets);
930 for (
unsigned int c = 0; c < n_buckets; ++c)
931 local_dof_count[c] = component_to_dof_map[c].size();
933 std::vector<types::global_dof_index> prefix_dof_count(n_buckets);
934 const int ierr = MPI_Exscan(local_dof_count.data(),
935 prefix_dof_count.data(),
939 tria->get_communicator());
942 std::vector<types::global_dof_index> global_dof_count(n_buckets);
944 tria->get_communicator(),
949 for (
unsigned int c = 0; c < n_buckets; ++c)
951 shifts[c] = prefix_dof_count[c] + cumulated;
952 cumulated += global_dof_count[c];
962 for (
unsigned int c = 1; c < fe_collection.
n_components(); ++c)
963 shifts[c] = shifts[c - 1] + component_to_dof_map[c - 1].size();
972 for (
unsigned int component = 0; component < fe_collection.
n_components();
975 next_free_index = shifts[component];
978 component_to_dof_map[component])
990 return next_free_index;
995 template <
int dim,
int spacedim>
999 std::vector<types::global_dof_index> renumbering(
1020 (result <= dof_handler.
n_dofs())),
1028 template <
int dim,
int spacedim>
1035 std::vector<types::global_dof_index> renumbering(
1064 template <
int dim,
int spacedim,
class IteratorType,
class EndIteratorType>
1067 const IteratorType &start,
1068 const EndIteratorType &end,
1069 const bool is_level_operation)
1072 start->get_dof_handler().get_fe_collection();
1078 new_indices.resize(0);
1085 const IndexSet &locally_owned_dofs =
1086 is_level_operation ?
1087 start->get_dof_handler().locally_owned_mg_dofs(start->level()) :
1088 start->get_dof_handler().locally_owned_dofs();
1092 std::vector<types::global_dof_index> local_dof_indices;
1097 std::vector<std::vector<types::global_dof_index>> block_list(
1098 fe_collection.
size());
1099 for (
unsigned int f = 0; f < fe_collection.
size(); ++f)
1118 std::vector<std::vector<types::global_dof_index>> block_to_dof_map(
1120 for (IteratorType cell = start; cell != end; ++cell)
1122 if (is_level_operation)
1125 if (!cell->is_locally_owned_on_level())
1132 if (!cell->is_locally_owned())
1136 if (is_level_operation)
1138 cell->level() == start->level(),
1140 "Multigrid renumbering in compute_block_wise() needs to be applied to a single level!"));
1146 const unsigned int dofs_per_cell =
1147 fe_collection[fe_index].n_dofs_per_cell();
1148 local_dof_indices.resize(dofs_per_cell);
1149 cell->get_active_or_mg_dof_indices(local_dof_indices);
1151 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
1152 if (locally_owned_dofs.
is_element(local_dof_indices[i]))
1153 block_to_dof_map[block_list[fe_index][i]].push_back(
1154 local_dof_indices[i]);
1169 for (
unsigned int block = 0; block < fe_collection.
n_blocks(); ++block)
1171 std::sort(block_to_dof_map[block].begin(),
1172 block_to_dof_map[block].end());
1173 block_to_dof_map[block].erase(
1174 std::unique(block_to_dof_map[block].begin(),
1175 block_to_dof_map[block].end()),
1176 block_to_dof_map[block].end());
1181 const unsigned int n_buckets = fe_collection.
n_blocks();
1182 std::vector<types::global_dof_index> shifts(n_buckets);
1186 &start->get_dof_handler().get_triangulation())))
1188#ifdef DEAL_II_WITH_MPI
1189 std::vector<types::global_dof_index> local_dof_count(n_buckets);
1191 for (
unsigned int c = 0; c < n_buckets; ++c)
1192 local_dof_count[c] = block_to_dof_map[c].size();
1194 std::vector<types::global_dof_index> prefix_dof_count(n_buckets);
1195 const int ierr = MPI_Exscan(local_dof_count.data(),
1196 prefix_dof_count.data(),
1200 tria->get_communicator());
1203 std::vector<types::global_dof_index> global_dof_count(n_buckets);
1205 tria->get_communicator(),
1210 for (
unsigned int c = 0; c < n_buckets; ++c)
1212 shifts[c] = prefix_dof_count[c] + cumulated;
1213 cumulated += global_dof_count[c];
1223 for (
unsigned int c = 1; c < fe_collection.
n_blocks(); ++c)
1224 shifts[c] = shifts[c - 1] + block_to_dof_map[c - 1].size();
1233 for (
unsigned int block = 0; block < fe_collection.
n_blocks(); ++block)
1235 const typename std::vector<types::global_dof_index>::const_iterator
1236 begin_of_component = block_to_dof_map[block].begin(),
1237 end_of_component = block_to_dof_map[block].end();
1239 next_free_index = shifts[block];
1241 for (
typename std::vector<types::global_dof_index>::const_iterator
1242 dof_index = begin_of_component;
1243 dof_index != end_of_component;
1254 return next_free_index;
1266 template <
int dim,
typename CellIteratorType>
1268 compute_hierarchical_recursive(
1271 const CellIteratorType &cell,
1272 const IndexSet &locally_owned_dof_indices,
1273 std::vector<types::global_dof_index> &new_indices)
1276 next_free_dof_offset;
1278 if (cell->has_children())
1281 for (
unsigned int c = 0; c < GeometryInfo<dim>::max_children_per_cell;
1283 current_next_free_dof_offset =
1284 compute_hierarchical_recursive<dim>(current_next_free_dof_offset,
1287 locally_owned_dof_indices,
1307 if (cell->is_locally_owned())
1310 const unsigned int dofs_per_cell =
1311 cell->get_fe().n_dofs_per_cell();
1312 std::vector<types::global_dof_index> local_dof_indices(
1314 cell->get_dof_indices(local_dof_indices);
1333 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
1334 if (locally_owned_dof_indices.
is_element(local_dof_indices[i]))
1338 const unsigned int idx =
1340 local_dof_indices[i]);
1344 my_starting_index + current_next_free_dof_offset;
1345 ++current_next_free_dof_offset;
1351 return current_next_free_dof_offset;
1357 template <
int dim,
int spacedim>
1361 std::vector<types::global_dof_index> renumbering(
1384#ifdef DEAL_II_WITH_MPI
1387 const int ierr = MPI_Exscan(&locally_owned_size,
1392 tria->get_communicator());
1401#ifdef DEAL_II_WITH_P4EST
1406 for (
unsigned int c = 0; c < tria->n_cells(0); ++c)
1408 const unsigned int coarse_cell_index =
1409 tria->get_p4est_tree_to_coarse_cell_permutation()[c];
1412 this_cell(tria, 0, coarse_cell_index, &dof_handler);
1414 next_free_dof_offset =
1415 compute_hierarchical_recursive<dim>(next_free_dof_offset,
1430 dof_handler.
begin(0);
1431 cell != dof_handler.
end(0);
1433 next_free_dof_offset =
1434 compute_hierarchical_recursive<dim>(next_free_dof_offset,
1447 (next_free_dof_offset <= dof_handler.
n_dofs())),
1451 Assert(std::find(renumbering.begin(),
1461 template <
int dim,
int spacedim>
1464 const std::vector<bool> &selected_dofs)
1466 std::vector<types::global_dof_index> renumbering(
1475 template <
int dim,
int spacedim>
1478 const std::vector<bool> &selected_dofs,
1479 const unsigned int level)
1484 std::vector<types::global_dof_index> renumbering(
1496 template <
int dim,
int spacedim>
1499 std::vector<types::global_dof_index> &new_indices,
1501 const std::vector<bool> &selected_dofs)
1504 Assert(selected_dofs.size() == n_dofs,
1509 Assert(new_indices.size() == n_dofs,
1513 std::count(selected_dofs.begin(), selected_dofs.end(),
false);
1518 if (selected_dofs[i] ==
false)
1520 new_indices[i] = next_unselected;
1525 new_indices[i] = next_selected;
1534 template <
int dim,
int spacedim>
1537 std::vector<types::global_dof_index> &new_indices,
1539 const std::vector<bool> &selected_dofs,
1540 const unsigned int level)
1545 const unsigned int n_dofs = dof_handler.
n_dofs(
level);
1546 Assert(selected_dofs.size() == n_dofs,
1551 Assert(new_indices.size() == n_dofs,
1554 const unsigned int n_selected_dofs =
1555 std::count(selected_dofs.begin(), selected_dofs.end(),
false);
1557 unsigned int next_unselected = 0;
1558 unsigned int next_selected = n_selected_dofs;
1559 for (
unsigned int i = 0; i < n_dofs; ++i)
1560 if (selected_dofs[i] ==
false)
1562 new_indices[i] = next_unselected;
1567 new_indices[i] = next_selected;
1576 template <
int dim,
int spacedim>
1583 std::vector<types::global_dof_index> renumbering(
1592 template <
int dim,
int spacedim>
1595 std::vector<types::global_dof_index> &new_indices,
1596 std::vector<types::global_dof_index> &reverse,
1598 const typename std::vector<
1623 std::vector<bool> already_sorted(n_owned_dofs,
false);
1624 std::vector<types::global_dof_index> cell_dofs;
1628 unsigned int index = 0;
1630 for (
const auto &cell : cells)
1634 const unsigned int n_cell_dofs = cell->get_fe().n_dofs_per_cell();
1635 cell_dofs.resize(n_cell_dofs);
1637 cell->get_active_or_mg_dof_indices(cell_dofs);
1641 std::sort(cell_dofs.begin(), cell_dofs.end());
1643 for (
const auto dof : cell_dofs)
1645 const auto local_dof = owned_dofs.index_within_set(dof);
1647 !already_sorted[local_dof])
1649 already_sorted[local_dof] =
true;
1650 reverse[index++] = local_dof;
1654 Assert(index == n_owned_dofs,
1656 "Traversing over the given set of cells did not cover all "
1657 "degrees of freedom in the DoFHandler. Does the set of cells "
1658 "not include all active cells?"));
1661 new_indices[reverse[i]] = owned_dofs.nth_index_in_set(i);
1666 template <
int dim,
int spacedim>
1669 const unsigned int level,
1670 const typename std::vector<
1676 std::vector<types::global_dof_index> renumbering(dof.
n_dofs(
level));
1677 std::vector<types::global_dof_index> reverse(dof.
n_dofs(
level));
1685 template <
int dim,
int spacedim>
1688 std::vector<types::global_dof_index> &new_order,
1689 std::vector<types::global_dof_index> &reverse,
1691 const unsigned int level,
1692 const typename std::vector<
1706 std::vector<bool> already_sorted(n_global_dofs,
false);
1707 std::vector<types::global_dof_index> cell_dofs(n_cell_dofs);
1709 unsigned int global_index = 0;
1711 for (
const auto &cell : cells)
1715 cell->get_active_or_mg_dof_indices(cell_dofs);
1716 std::sort(cell_dofs.begin(), cell_dofs.end());
1718 for (
unsigned int i = 0; i < n_cell_dofs; ++i)
1720 if (!already_sorted[cell_dofs[i]])
1722 already_sorted[cell_dofs[i]] =
true;
1723 reverse[global_index++] = cell_dofs[i];
1727 Assert(global_index == n_global_dofs,
1729 "Traversing over the given set of cells did not cover all "
1730 "degrees of freedom in the DoFHandler. Does the set of cells "
1731 "not include all cells of the specified level?"));
1734 new_order[reverse[i]] = i;
1739 template <
int dim,
int spacedim>
1743 const bool dof_wise_renumbering)
1745 std::vector<types::global_dof_index> renumbering(dof.
n_dofs());
1746 std::vector<types::global_dof_index> reverse(dof.
n_dofs());
1748 renumbering, reverse, dof, direction, dof_wise_renumbering);
1755 template <
int dim,
int spacedim>
1758 std::vector<types::global_dof_index> &reverse,
1761 const bool dof_wise_renumbering)
1767 if (dof_wise_renumbering ==
false)
1769 std::vector<typename DoFHandler<dim, spacedim>::active_cell_iterator>
1775 comparator(direction);
1778 ordered_cells.push_back(cell);
1780 std::sort(ordered_cells.begin(), ordered_cells.end(), comparator);
1792 const unsigned int n_dofs = dof.
n_dofs();
1793 std::vector<std::pair<Point<spacedim>,
unsigned int>>
1794 support_point_list(n_dofs);
1797 Assert(fe_collection[0].has_support_points(),
1800 for (
unsigned int comp = 0; comp < fe_collection.
size(); ++comp)
1802 Assert(fe_collection[comp].has_support_points(),
1808 quadrature_collection,
1811 std::vector<bool> already_touched(n_dofs,
false);
1813 std::vector<types::global_dof_index> local_dof_indices;
1817 const unsigned int dofs_per_cell = cell->get_fe().n_dofs_per_cell();
1818 local_dof_indices.resize(dofs_per_cell);
1819 hp_fe_values.
reinit(cell);
1822 cell->get_active_or_mg_dof_indices(local_dof_indices);
1823 const std::vector<Point<spacedim>> &points =
1825 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
1826 if (!already_touched[local_dof_indices[i]])
1828 support_point_list[local_dof_indices[i]].first = points[i];
1829 support_point_list[local_dof_indices[i]].second =
1830 local_dof_indices[i];
1831 already_touched[local_dof_indices[i]] =
true;
1836 std::sort(support_point_list.begin(),
1837 support_point_list.end(),
1840 new_indices[support_point_list[i].
second] = i;
1846 template <
int dim,
int spacedim>
1849 const unsigned int level,
1851 const bool dof_wise_renumbering)
1853 std::vector<types::global_dof_index> renumbering(dof.
n_dofs(
level));
1854 std::vector<types::global_dof_index> reverse(dof.
n_dofs(
level));
1856 renumbering, reverse, dof,
level, direction, dof_wise_renumbering);
1863 template <
int dim,
int spacedim>
1866 std::vector<types::global_dof_index> &reverse,
1868 const unsigned int level,
1870 const bool dof_wise_renumbering)
1872 if (dof_wise_renumbering ==
false)
1874 std::vector<typename DoFHandler<dim, spacedim>::level_cell_iterator>
1880 comparator(direction);
1889 ordered_cells.push_back(p);
1892 std::sort(ordered_cells.begin(), ordered_cells.end(), comparator);
1901 std::vector<std::pair<Point<spacedim>,
unsigned int>>
1902 support_point_list(n_dofs);
1909 std::vector<bool> already_touched(dof.
n_dofs(),
false);
1912 std::vector<types::global_dof_index> local_dof_indices(dofs_per_cell);
1917 for (; begin != end; ++begin)
1920 &begin_tria = begin;
1921 begin->get_active_or_mg_dof_indices(local_dof_indices);
1922 fe_values.
reinit(begin_tria);
1923 const std::vector<Point<spacedim>> &points =
1925 for (
unsigned int i = 0; i < dofs_per_cell; ++i)
1926 if (!already_touched[local_dof_indices[i]])
1928 support_point_list[local_dof_indices[i]].first = points[i];
1929 support_point_list[local_dof_indices[i]].second =
1930 local_dof_indices[i];
1931 already_touched[local_dof_indices[i]] =
true;
1936 std::sort(support_point_list.begin(),
1937 support_point_list.end(),
1940 new_indices[support_point_list[i].
second] = i;
1974 template <
class DHCellIterator>
1976 operator()(
const DHCellIterator &c1,
const DHCellIterator &c2)
const
1980 return compare(c1, c2, std::integral_constant<int, dim>());
1987 template <
class DHCellIterator,
int xdim>
1990 const DHCellIterator &c2,
1991 std::integral_constant<int, xdim>)
const
1995 const double s1 = std::atan2(
v1[0],
v1[1]);
1996 const double s2 = std::atan2(v2[0], v2[1]);
1997 return (
counter ? (s1 > s2) : (s2 > s1));
2005 template <
class DHCellIterator>
2008 const DHCellIterator &,
2009 std::integral_constant<int, 1>)
const
2012 ExcMessage(
"This operation only makes sense for dim>=2."));
2020 template <
int dim,
int spacedim>
2026 std::vector<types::global_dof_index> renumbering(dof.
n_dofs());
2034 template <
int dim,
int spacedim>
2041 std::vector<typename DoFHandler<dim, spacedim>::active_cell_iterator>
2047 ordered_cells.push_back(cell);
2049 std::sort(ordered_cells.begin(), ordered_cells.end(), comparator);
2051 std::vector<types::global_dof_index> reverse(new_indices.size());
2057 template <
int dim,
int spacedim>
2060 const unsigned int level,
2064 std::vector<typename DoFHandler<dim, spacedim>::level_cell_iterator>
2076 ordered_cells.push_back(p);
2079 std::sort(ordered_cells.begin(), ordered_cells.end(), comparator);
2086 template <
int dim,
int spacedim>
2090 std::vector<types::global_dof_index> renumbering(
2099 template <
int dim,
int spacedim>
2106 std::vector<types::global_dof_index> renumbering(
2117 template <
int dim,
int spacedim>
2123 Assert(new_indices.size() == n_dofs,
2126 std::iota(new_indices.begin(),
2134 ::boost::mt19937 random_number_generator;
2135 for (
unsigned int i = 1; i < n_dofs; ++i)
2138 const unsigned int j =
2139 ::boost::random::uniform_int_distribution<>(0, i)(
2140 random_number_generator);
2144 std::swap(new_indices[i], new_indices[j]);
2150 template <
int dim,
int spacedim>
2154 const unsigned int level)
2157 Assert(new_indices.size() == n_dofs,
2160 std::iota(new_indices.begin(),
2168 ::boost::mt19937 random_number_generator;
2169 for (
unsigned int i = 1; i < n_dofs; ++i)
2172 const unsigned int j =
2173 ::boost::random::uniform_int_distribution<>(0, i)(
2174 random_number_generator);
2178 std::swap(new_indices[i], new_indices[j]);
2184 template <
int dim,
int spacedim>
2192 "Parallel triangulations are already enumerated according to their MPI process id."));
2194 std::vector<types::global_dof_index> renumbering(
2203 template <
int dim,
int spacedim>
2209 Assert(new_dof_indices.size() == n_dofs,
2215 std::vector<types::subdomain_id> subdomain_association(n_dofs);
2217 const unsigned int n_subdomains =
2218 *std::max_element(subdomain_association.begin(),
2219 subdomain_association.end()) +
2229 std::fill(new_dof_indices.begin(),
2230 new_dof_indices.end(),
2236 if (subdomain_association[i] == subdomain)
2240 new_dof_indices[i] = next_free_index;
2246 Assert(std::find(new_dof_indices.begin(),
2247 new_dof_indices.end(),
2254 template <
int dim,
int spacedim>
2258 std::vector<types::global_dof_index> renumbering(
2271 template <
int dim,
int spacedim>
2274 std::vector<types::global_dof_index> &new_dof_indices,
2278 Assert(new_dof_indices.size() == n_dofs,
2290 std::vector<types::global_dof_index> component_renumbering(
2295 std::vector<unsigned int>(),
2300 const std::vector<types::global_dof_index> dofs_per_component =
2302 for (
const auto &dpc : dofs_per_component)
2306 const unsigned int n_components =
2310 dof_handler.
n_dofs() / n_components;
2316 if (component_renumbering.empty())
2318 new_dof_indices.resize(0);
2321 std::fill(new_dof_indices.begin(),
2322 new_dof_indices.end(),
2330 std::vector<types::global_dof_index> component_dofs(
2331 local_dofs_per_component);
2332 for (
unsigned int component = 0; component < n_components; ++component)
2334 for (std::size_t i = 0; i < local_dofs_per_component; ++i)
2336 component_renumbering[n_components * i + component];
2337 component_renumbered_dofs.
add_indices(component_dofs.begin(),
2338 component_dofs.end());
2340 component_renumbered_dofs.
compress();
2344 component_renumbered_dofs2.
add_indices(component_renumbering.begin(),
2345 component_renumbering.end());
2346 Assert(component_renumbered_dofs2 == component_renumbered_dofs,
2353 AssertThrow(fe.dofs_per_cell == 0 || fe.has_support_points(),
2355 for (
unsigned int i = 0; i < fe.n_base_elements(); ++i)
2357 fe.base_element(0).get_unit_support_points() ==
2358 fe.base_element(i).get_unit_support_points(),
2360 "All base elements should have the same support points."));
2363 std::vector<types::global_dof_index> component_to_nodal(
2367 std::vector<types::global_dof_index> cell_dofs;
2368 std::vector<types::global_dof_index> component_renumbered_cell_dofs;
2372 auto next_dof_it = locally_owned_dofs.
begin();
2374 if (cell->is_locally_owned())
2379 cell->get_dof_indices(cell_dofs);
2386 if (locally_owned_dofs.
is_element(cell_dofs[i]))
2388 const auto local_index =
2390 component_renumbered_cell_dofs[i] =
2391 component_renumbering[local_index];
2395 component_renumbered_cell_dofs[i] =
2404 component_renumbered_cell_dofs[i]))
2406 for (
unsigned int component = 0;
2413 const auto local_index =
2415 component_renumbered_cell_dofs[i] +
2416 dofs_per_component * component);
2418 if (component_to_nodal[local_index] ==
2421 component_to_nodal[local_index] = *next_dof_it;
2432 const auto local_index =
2434 new_dof_indices[i] = component_to_nodal[local_index];
2443 typename VectorizedArrayType>
2449 const std::vector<types::global_dof_index> new_global_numbers =
2459 template <
int dim,
int spacedim,
typename Number,
typename AdditionalDataType>
2463 const AdditionalDataType &matrix_free_data)
2465 const std::vector<types::global_dof_index> new_global_numbers =
2472 dof_handler.
renumber_dofs(matrix_free_data.mg_level, new_global_numbers);
2477 template <
int dim,
int spacedim,
typename Number,
typename AdditionalDataType>
2478 std::vector<types::global_dof_index>
2482 const AdditionalDataType &matrix_free_data)
2484 AdditionalDataType my_mf_data = matrix_free_data;
2485 my_mf_data.initialize_mapping =
false;
2486 my_mf_data.tasks_parallel_scheme = AdditionalDataType::none;
2488 typename AdditionalDataType::MatrixFreeType separate_matrix_free;
2507 std::vector<std::vector<unsigned int>>
2508 group_dofs_by_rank_access(
2509 const ::Utilities::MPI::Partitioner &partitioner)
2513 std::vector<unsigned int> touch_count(partitioner.locally_owned_size());
2514 for (
const auto &p : partitioner.import_indices())
2515 for (unsigned
int i = p.
first; i < p.second; ++i)
2519 std::vector<std::vector<unsigned int>> result(1);
2520 for (
unsigned int i = 0; i < touch_count.size(); ++i)
2521 if (touch_count[i] == 0)
2522 result.back().push_back(i);
2527 std::map<unsigned int, std::vector<unsigned int>>
2528 multiple_ranks_access_dof;
2529 const std::vector<std::pair<unsigned int, unsigned int>> &import_targets =
2530 partitioner.import_targets();
2531 auto it = partitioner.import_indices().begin();
2532 for (
const std::pair<unsigned int, unsigned int> &proc : import_targets)
2534 result.emplace_back();
2535 unsigned int count_dofs = 0;
2536 while (count_dofs < proc.second)
2538 for (
unsigned int i = it->first; i < it->second;
2541 if (touch_count[i] == 1)
2542 result.back().push_back(i);
2544 multiple_ranks_access_dof[i].push_back(proc.first);
2554 std::map<std::vector<unsigned int>,
2555 std::vector<unsigned int>,
2556 std::function<
bool(
const std::vector<unsigned int> &,
2557 const std::vector<unsigned int> &)>>
2558 dofs_by_rank{[](
const std::vector<unsigned int> &a,
2559 const std::vector<unsigned int> &
b) {
2560 if (a.size() <
b.size())
2562 if (a.size() ==
b.size())
2564 for (
unsigned int i = 0; i < a.size(); ++i)
2567 else if (a[i] > b[i])
2572 for (
const auto &entry : multiple_ranks_access_dof)
2573 dofs_by_rank[entry.
second].push_back(entry.
first);
2575 for (
const auto &procs : dofs_by_rank)
2576 result.push_back(procs.
second);
2587 template <
int dim,
typename Number,
typename VectorizedArrayType>
2588 std::pair<std::vector<unsigned int>, std::vector<unsigned char>>
2589 compute_mf_numbering(
2591 const unsigned int component)
2595 const unsigned int n_comp =
2598 matrix_free.
get_dof_handler(component).get_fe().n_base_elements() == 1,
2606 const unsigned int fe_degree =
2608 const unsigned int nn = fe_degree - 1;
2617 std::array<std::pair<unsigned int, unsigned int>,
2622 dofs_on_objects[0] = std::make_pair(0U, 1U);
2623 dofs_on_objects[1] = std::make_pair(2 * n_comp, nn);
2624 dofs_on_objects[2] = std::make_pair(n_comp, 1U);
2628 dofs_on_objects[0] = std::make_pair(0U, 1U);
2629 dofs_on_objects[1] = std::make_pair(n_comp * (4 + 2 * nn), nn);
2630 dofs_on_objects[2] = std::make_pair(n_comp, 1U);
2631 dofs_on_objects[3] = std::make_pair(n_comp * 4, nn);
2632 dofs_on_objects[4] = std::make_pair(n_comp * (4 + 4 * nn), nn * nn);
2633 dofs_on_objects[5] = std::make_pair(n_comp * (4 + 1 * nn), nn);
2634 dofs_on_objects[6] = std::make_pair(2 * n_comp, 1U);
2635 dofs_on_objects[7] = std::make_pair(n_comp * (4 + 3 * nn), nn);
2636 dofs_on_objects[8] = std::make_pair(3 * n_comp, 1U);
2640 dofs_on_objects[0] = std::make_pair(0U, 1U);
2641 dofs_on_objects[1] = std::make_pair(n_comp * (8 + 2 * nn), nn);
2642 dofs_on_objects[2] = std::make_pair(n_comp, 1U);
2643 dofs_on_objects[3] = std::make_pair(n_comp * 8, nn);
2644 dofs_on_objects[4] =
2645 std::make_pair(n_comp * (8 + 12 * nn + 4 * nn * nn), nn * nn);
2646 dofs_on_objects[5] = std::make_pair(n_comp * (8 + 1 * nn), nn);
2647 dofs_on_objects[6] = std::make_pair(n_comp * 2, 1U);
2648 dofs_on_objects[7] = std::make_pair(n_comp * (8 + 3 * nn), nn);
2649 dofs_on_objects[8] = std::make_pair(n_comp * 3, 1U);
2650 dofs_on_objects[9] = std::make_pair(n_comp * (8 + 8 * nn), nn);
2651 dofs_on_objects[10] =
2652 std::make_pair(n_comp * (8 + 12 * nn + 2 * nn * nn), nn * nn);
2653 dofs_on_objects[11] = std::make_pair(n_comp * (8 + 9 * nn), nn);
2654 dofs_on_objects[12] = std::make_pair(n_comp * (8 + 12 * nn), nn * nn);
2655 dofs_on_objects[13] =
2656 std::make_pair(n_comp * (8 + 12 * nn + 6 * nn * nn), nn * nn * nn);
2657 dofs_on_objects[14] =
2658 std::make_pair(n_comp * (8 + 12 * nn + 1 * nn * nn), nn * nn);
2659 dofs_on_objects[15] = std::make_pair(n_comp * (8 + 10 * nn), nn);
2660 dofs_on_objects[16] =
2661 std::make_pair(n_comp * (8 + 12 * nn + 3 * nn * nn), nn * nn);
2662 dofs_on_objects[17] = std::make_pair(n_comp * (8 + 11 * nn), nn);
2663 dofs_on_objects[18] = std::make_pair(n_comp * 4, 1U);
2664 dofs_on_objects[19] = std::make_pair(n_comp * (8 + 6 * nn), nn);
2665 dofs_on_objects[20] = std::make_pair(n_comp * 5, 1U);
2666 dofs_on_objects[21] = std::make_pair(n_comp * (8 + 4 * nn), nn);
2667 dofs_on_objects[22] =
2668 std::make_pair(n_comp * (8 + 12 * nn + 5 * nn * nn), nn * nn);
2669 dofs_on_objects[23] = std::make_pair(n_comp * (8 + 5 * nn), nn);
2670 dofs_on_objects[24] = std::make_pair(n_comp * 6, 1U);
2671 dofs_on_objects[25] = std::make_pair(n_comp * (8 + 7 * nn), nn);
2672 dofs_on_objects[26] = std::make_pair(n_comp * 7, 1U);
2677 std::vector<unsigned int> &result,
2678 unsigned int &counter_dof_numbers) {
2680 owned_dofs.index_within_set(dof_index);
2685 result[local_dof_index] = counter_dof_numbers++;
2689 unsigned int counter_dof_numbers = 0;
2690 std::vector<unsigned int> dofs_extracted;
2691 std::vector<types::global_dof_index> dof_indices(
2708 const unsigned int n_owned_dofs = owned_dofs.n_elements();
2709 std::vector<unsigned int> dof_numbers_mf_order(
2711 std::vector<unsigned int> last_touch_by_cell_batch_range(
2713 std::vector<unsigned char> touch_count(n_owned_dofs);
2715 const auto operation_on_cell_range =
2718 const unsigned int &,
2719 const std::pair<unsigned int, unsigned int> &cell_range) {
2720 for (
unsigned int cell = cell_range.first; cell < cell_range.second;
2724 for (
unsigned int v = 0;
2731 ->get_dof_indices(dof_indices);
2734 ->get_mg_dof_indices(dof_indices);
2736 for (
unsigned int a = 0; a < dofs_on_objects.size(); ++a)
2738 const auto &r = dofs_on_objects[a];
2739 if (a == 10 || a == 16)
2742 for (
unsigned int i1 = 0; i1 < nn; ++i1)
2743 for (
unsigned int i0 = 0; i0 < nn; ++i0)
2744 for (
unsigned int c = 0; c < n_comp; ++c)
2745 renumber_func(dof_indices[r.first + r.second * c +
2748 dof_numbers_mf_order,
2749 counter_dof_numbers);
2751 for (
unsigned int i = 0; i < r.second; ++i)
2752 for (
unsigned int c = 0; c < n_comp; ++c)
2754 dof_indices[r.first + r.second * c + i],
2756 dof_numbers_mf_order,
2757 counter_dof_numbers);
2766 dofs_extracted, cell);
2767 for (
const unsigned int dof_index : dofs_extracted)
2768 if (dof_index < n_owned_dofs &&
2769 last_touch_by_cell_batch_range[dof_index] !=
2772 ++touch_count[dof_index];
2773 last_touch_by_cell_batch_range[dof_index] =
2783 "version of MatrixFree::cell_loop"));
2785 matrix_free.template cell_loop<unsigned int, unsigned int>(
2786 operation_on_cell_range, counter_dof_numbers, counter_dof_numbers);
2790 return std::make_pair(dof_numbers_mf_order, touch_count);
2800 typename VectorizedArrayType>
2801 std::vector<types::global_dof_index>
2807 ExcMessage(
"You need to set up indices in MatrixFree "
2808 "to be able to compute a renumbering!"));
2811 unsigned int component = 0;
2812 for (; component < matrix_free.
n_components(); ++component)
2817 ExcMessage(
"Could not locate the given DoFHandler in MatrixFree"));
2829 const std::vector<std::vector<unsigned int>> dofs_by_rank_access =
2830 group_dofs_by_rank_access(
2833 const auto &[local_numbering, touch_count] =
2834 compute_mf_numbering(matrix_free, component);
2844 enum class Category :
unsigned char
2851 std::vector<Category> categories(locally_owned_size);
2852 for (
unsigned int i = 0; i < locally_owned_size; ++i)
2853 switch (touch_count[i])
2856 categories[local_numbering[i]] = Category::constrained;
2859 categories[local_numbering[i]] = Category::single;
2862 categories[local_numbering[i]] = Category::multiple;
2865 for (
unsigned int chunk = 1; chunk < dofs_by_rank_access.size(); ++chunk)
2866 for (
const auto i : dofs_by_rank_access[chunk])
2867 categories[local_numbering[i]] = Category::mpi_dof;
2871 std::array<unsigned int, 4> n_entries_per_category{};
2872 for (
const Category i : categories)
2875 ++n_entries_per_category[
static_cast<int>(i)];
2877 std::array<unsigned int, 4> counters{};
2878 for (
unsigned int i = 1; i < 4; ++i)
2879 counters[i] = counters[i - 1] + n_entries_per_category[i - 1];
2880 std::vector<unsigned int> numbering_categories;
2881 numbering_categories.reserve(locally_owned_size);
2882 for (
const Category category : categories)
2884 numbering_categories.push_back(counters[
static_cast<int>(category)]);
2885 ++counters[
static_cast<int>(category)];
2889 std::vector<::types::global_dof_index> new_global_numbers(
2890 locally_owned_size);
2891 for (
unsigned int i = 0; i < locally_owned_size; ++i)
2892 new_global_numbers[i] =
2895 return new_global_numbers;
2903#include "dof_renumbering.inst"
unsigned int first_selected_component(const unsigned int overall_number_of_components=numbers::invalid_unsigned_int) const
cell_iterator end() const
const hp::FECollection< dim, spacedim > & get_fe_collection() const
void renumber_dofs(const std::vector< types::global_dof_index > &new_numbers)
const FiniteElement< dim, spacedim > & get_fe(const types::fe_index index=0) const
const IndexSet & locally_owned_mg_dofs(const unsigned int level) const
const Triangulation< dim, spacedim > & get_triangulation() const
const IndexSet & locally_owned_dofs() const
active_cell_iterator begin_active(const unsigned int level=0) const
types::global_dof_index n_dofs() const
typename LevelSelector::cell_iterator level_cell_iterator
cell_iterator begin(const unsigned int level=0) const
MPI_Comm get_communicator() const
types::global_dof_index n_locally_owned_dofs() const
void add_entries(const size_type row, ForwardIterator begin, ForwardIterator end, const bool indices_are_unique_and_sorted=false)
size_type row_length(const size_type row) const
size_type column_number(const size_type row, const size_type index) const
const std::vector< Point< spacedim > > & get_quadrature_points() const
void reinit(const TriaIterator< DoFCellAccessor< dim, spacedim, level_dof_access > > &cell)
unsigned int n_dofs_per_cell() const
unsigned int n_components() const
const unsigned int dofs_per_cell
std::pair< unsigned int, types::global_dof_index > system_to_block_index(const unsigned int component) const
const ComponentMask & get_nonzero_components(const unsigned int i) const
bool has_support_points() const
const std::vector< Point< dim > > & get_unit_support_points() const
bool is_primitive() const
std::pair< unsigned int, unsigned int > system_to_component_index(const unsigned int index) const
size_type index_within_set(const size_type global_index) const
size_type n_elements() const
bool is_element(const size_type index) const
ElementIterator begin() const
void subtract_set(const IndexSet &other)
size_type nth_index_in_set(const size_type local_index) const
void add_indices(const ForwardIterator &begin, const ForwardIterator &end)
const internal::MatrixFreeFunctions::TaskInfo & get_task_info() const
unsigned int n_active_entries_per_cell_batch(const unsigned int cell_batch_index) const
unsigned int get_mg_level() const
const internal::MatrixFreeFunctions::DoFInfo & get_dof_info(const unsigned int dof_handler_index_component=0) const
const DoFHandler< dim > & get_dof_handler(const unsigned int dof_handler_index=0) const
DoFHandler< dim >::cell_iterator get_cell_iterator(const unsigned int cell_batch_index, const unsigned int lane_index, const unsigned int dof_handler_index=0) const
bool indices_initialized() const
unsigned int n_components() const
unsigned int n_active_cells() const
unsigned int n_cells() const
const IndexSet & locally_owned_range() const
unsigned int size() const
unsigned int n_blocks() const
unsigned int n_components() const
const FEValuesType & get_present_fe_values() const
void reinit(const TriaIterator< DoFCellAccessor< dim, spacedim, lda > > &cell, const unsigned int q_index=numbers::invalid_unsigned_int, const unsigned int mapping_index=numbers::invalid_unsigned_int, const unsigned int fe_index=numbers::invalid_unsigned_int)
void push_back(const Quadrature< dim_in > &new_quadrature)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
IteratorRange< active_cell_iterator > active_cell_iterators() const
static ::ExceptionBase & ExcNotImplemented()
#define Assert(cond, exc)
#define AssertDimension(dim1, dim2)
#define AssertThrowMPI(error_code)
#define AssertIndexRange(index, range)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcDoFHandlerNotInitialized()
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
static ::ExceptionBase & ExcMessage(std::string arg1)
#define AssertThrow(cond, exc)
typename ActiveSelector::cell_iterator cell_iterator
typename ActiveSelector::active_cell_iterator active_cell_iterator
void make_hanging_node_constraints(const DoFHandler< dim, spacedim > &dof_handler, AffineConstraints< number > &constraints)
void make_sparsity_pattern(const DoFHandler< dim, spacedim > &dof_handler, SparsityPatternBase &sparsity_pattern, const AffineConstraints< number > &constraints={}, const bool keep_constrained_dofs=true, const types::subdomain_id subdomain_id=numbers::invalid_subdomain_id)
@ update_quadrature_points
Transformed quadrature points.
#define DEAL_II_ASSERT_UNREACHABLE()
#define DEAL_II_NOT_IMPLEMENTED()
adjacency_list< vecS, vecS, undirectedS, property< vertex_color_t, default_color_type, property< vertex_degree_t, int > > > Graph
graph_traits< Graph >::vertices_size_type size_type
std::pair< size_type, size_type > Pair
graph_traits< Graph >::vertex_descriptor Vertex
void create_graph(const DoFHandler< dim, spacedim > &dof_handler, const bool use_constraints, boosttypes::Graph &graph, boosttypes::property_map< boosttypes::Graph, boosttypes::vertex_degree_t >::type &graph_degree)
void compute_Cuthill_McKee(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &, const bool reversed_numbering=false, const bool use_constraints=false)
void Cuthill_McKee(DoFHandler< dim, spacedim > &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false)
void king_ordering(DoFHandler< dim, spacedim > &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false)
void compute_king_ordering(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &, const bool reversed_numbering=false, const bool use_constraints=false)
void compute_minimum_degree(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &, const bool reversed_numbering=false, const bool use_constraints=false)
void minimum_degree(DoFHandler< dim, spacedim > &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false)
void compute_support_point_wise(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &dof_handler)
void compute_subdomain_wise(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &dof_handler)
void matrix_free_data_locality(DoFHandler< dim, spacedim > &dof_handler, const MatrixFree< dim, Number, VectorizedArrayType > &matrix_free)
void subdomain_wise(DoFHandler< dim, spacedim > &dof_handler)
types::global_dof_index compute_block_wise(std::vector< types::global_dof_index > &new_dof_indices, const IteratorType &start, const EndIteratorType &end, const bool is_level_operation)
void hierarchical(DoFHandler< dim, spacedim > &dof_handler)
void compute_random(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &dof_handler)
void component_wise(DoFHandler< dim, spacedim > &dof_handler, const std::vector< unsigned int > &target_component=std::vector< unsigned int >())
void downstream(DoFHandler< dim, spacedim > &dof_handler, const Tensor< 1, spacedim > &direction, const bool dof_wise_renumbering=false)
void compute_Cuthill_McKee(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &, const bool reversed_numbering=false, const bool use_constraints=false, const std::vector< types::global_dof_index > &starting_indices=std::vector< types::global_dof_index >(), const unsigned int level=numbers::invalid_unsigned_int)
void block_wise(DoFHandler< dim, spacedim > &dof_handler)
void Cuthill_McKee(DoFHandler< dim, spacedim > &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false, const std::vector< types::global_dof_index > &starting_indices=std::vector< types::global_dof_index >())
void compute_sort_selected_dofs_back(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &dof_handler, const std::vector< bool > &selected_dofs)
void sort_selected_dofs_back(DoFHandler< dim, spacedim > &dof_handler, const std::vector< bool > &selected_dofs)
void support_point_wise(DoFHandler< dim, spacedim > &dof_handler)
void compute_cell_wise(std::vector< types::global_dof_index > &renumbering, std::vector< types::global_dof_index > &inverse_renumbering, const DoFHandler< dim, spacedim > &dof_handler, const std::vector< typename DoFHandler< dim, spacedim >::active_cell_iterator > &cell_order)
std::vector< types::global_dof_index > compute_matrix_free_data_locality(const DoFHandler< dim, spacedim > &dof_handler, const MatrixFree< dim, Number, VectorizedArrayType > &matrix_free)
void clockwise_dg(DoFHandler< dim, spacedim > &dof_handler, const Point< spacedim > ¢er, const bool counter=false)
void random(DoFHandler< dim, spacedim > &dof_handler)
void compute_downstream(std::vector< types::global_dof_index > &new_dof_indices, std::vector< types::global_dof_index > &reverse, const DoFHandler< dim, spacedim > &dof_handler, const Tensor< 1, spacedim > &direction, const bool dof_wise_renumbering)
void cell_wise(DoFHandler< dim, spacedim > &dof_handler, const std::vector< typename DoFHandler< dim, spacedim >::active_cell_iterator > &cell_order)
types::global_dof_index compute_component_wise(std::vector< types::global_dof_index > &new_dof_indices, const CellIterator &start, const std_cxx20::type_identity_t< CellIterator > &end, const std::vector< unsigned int > &target_component, const bool is_level_operation)
void compute_clockwise_dg(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandler< dim, spacedim > &dof_handler, const Point< spacedim > ¢er, const bool counter)
SymmetricTensor< 2, dim, Number > b(const Tensor< 2, dim, Number > &F)
T sum(const T &t, const MPI_Comm mpi_communicator)
T max(const T &t, const MPI_Comm mpi_communicator)
constexpr T pow(const T base, const int iexp)
std::vector< Integer > reverse_permutation(const std::vector< Integer > &permutation)
static const unsigned int invalid_unsigned_int
const types::global_dof_index invalid_dof_index
typename type_identity< T >::type type_identity_t
unsigned short int fe_index
bool compare(const DHCellIterator &c1, const DHCellIterator &c2, std::integral_constant< int, xdim >) const
bool compare(const DHCellIterator &, const DHCellIterator &, std::integral_constant< int, 1 >) const
ClockCells(const Point< dim > ¢er, bool counter)
const Point< dim > & center
bool operator()(const DHCellIterator &c1, const DHCellIterator &c2) const
void get_dof_indices_on_cell_batch(std::vector< unsigned int > &local_indices, const unsigned int cell_batch, const bool with_constraints=true) const
std::shared_ptr< const Utilities::MPI::Partitioner > vector_partitioner
TasksParallelScheme scheme
#define DEAL_II_DOF_INDEX_MPI_TYPE