template <int dim>
-bool cell_is_patch_level_1 (const TriaIterator<dim, dealii::CellAccessor<dim> > &cell)
+bool cell_is_patch_level_1 (const typename Triangulation<dim>::cell_iterator &cell)
{
Assert (cell->active() == false, ExcInternalError());
(cell->coarsen_flag_set() == false),
ExcInternalError());
if (!cell->active())
- Assert (cell_is_patch_level_1(cell),
+ Assert (cell_is_patch_level_1<2>(cell),
ExcInternalError());
}
template <int dim>
-bool cell_is_patch_level_1 (const TriaIterator<dim, dealii::CellAccessor<dim> > &cell)
+bool cell_is_patch_level_1 (const typename Triangulation<dim>::cell_iterator &cell)
{
Assert (cell->active() == false, ExcInternalError());
(cell->coarsen_flag_set() == false),
ExcInternalError());
if (!cell->active())
- Assert (cell_is_patch_level_1(cell),
+ Assert (cell_is_patch_level_1<2>(cell),
ExcInternalError());
}
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams