From d2724b1fcaf793a50876e05c7ccc44a985ca0bac Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 15 Oct 2023 18:44:45 -0400 Subject: [PATCH] Deprecate the distorted child cell function. --- include/deal.II/grid/grid_tools.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/deal.II/grid/grid_tools.h b/include/deal.II/grid/grid_tools.h index 7faf8c8afc..5192713c90 100644 --- a/include/deal.II/grid/grid_tools.h +++ b/include/deal.II/grid/grid_tools.h @@ -2795,9 +2795,14 @@ namespace GridTools * The first argument passed to the current function is typically the * exception thrown by the Triangulation::execute_coarsening_and_refinement * function. + * + * @deprecated This function predates deal.II's use of manifolds and use of + * cell-local transfinite interpolation to place new points and is no longer + * necessary. See Manifolds::get_default_points_and_weights() for more + * information. */ template - typename Triangulation::DistortedCellList + DEAL_II_DEPRECATED typename Triangulation::DistortedCellList fix_up_distorted_child_cells( const typename Triangulation::DistortedCellList &distorted_cells, -- 2.39.5