&fe) { return finite_elements[dataset].get() == fe.get(); });
if (is_duplicate == false)
{
- if (cell->active())
+ if (cell->is_active())
{
typename DoFHandler<dim, spacedim>::active_cell_iterator
dh_cell(&cell->get_triangulation(),
for (auto cell : tria.cell_iterators_on_level(level))
if ((construct_multigrid &&
(cell->level_subdomain_id() == my_rank)) ||
- (cell->active() && cell->subdomain_id() == my_rank))
+ (cell->is_active() && cell->subdomain_id() == my_rank))
add_vertices_of_cell_to_vertices_owned_by_locally_owned_cells(
cell, vertices_owned_by_locally_owned_cells_on_level);
// on active level
const auto is_locally_relevant_on_active_level =
[&](TriaIterator<CellAccessor<dim, spacedim>> &cell) {
- if (cell->active())
+ if (cell->is_active())
for (const auto v : cell->vertex_indices())
if (vertices_owned_by_locally_owned_active_cells
[cell->vertex_index(v)])
for (auto cell : tria.cell_iterators_on_level(level))
if ((construct_multigrid &&
(cell->level_subdomain_id() == my_rank)) ||
- (cell->active() && cell->subdomain_id() == my_rank))
+ (cell->is_active() && cell->subdomain_id() == my_rank))
add_vertices_of_cell_to_vertices_owned_by_locally_owned_cells(
cell, vertices_owned_by_locally_owned_cells_on_level);