From cc5324bf589d717a2e67f5ecbc690010d8ca663b Mon Sep 17 00:00:00 2001 From: ESeNonFossiIo Date: Fri, 25 Mar 2016 11:57:50 +0100 Subject: [PATCH] fix tests --- include/deal.II/grid/grid_tools.h | 16 ++++++++-------- tests/grid/grid_remove_hanging_nodes.cc | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/include/deal.II/grid/grid_tools.h b/include/deal.II/grid/grid_tools.h index 0890de0e9c..cdcf909050 100644 --- a/include/deal.II/grid/grid_tools.h +++ b/include/deal.II/grid/grid_tools.h @@ -1712,13 +1712,13 @@ namespace GridTools get_longest_direction(typename Triangulation::active_cell_iterator cell); /** - * Remove hanging nodes from a grid. If the @p isotropic parameter is set - * to @p false (default) this function detects cells with hanging nodes and + * Remove hanging nodes from a grid. If the @p isotropic parameter is set + * to @p false (default) this function detects cells with hanging nodes and * refines the neighbours in the direction that removes hanging nodes. - * If the @p isotropic parameter is set + * If the @p isotropic parameter is set * to @p true, the neighbours refinement is made in each directions. - * In order to remove all hanging nodes this procedure has to be repeated: - * this could require a large number of iterations. + * In order to remove all hanging nodes this procedure has to be repeated: + * this could require a large number of iterations. * To avoid this a max number (@p max_iterations) of iteration is provided. * * Consider the following grid: @@ -1740,8 +1740,8 @@ namespace GridTools * hangind nodes. @p max_iterations is the maximum number of iteration * allowed. If @p max_iterations == 0 this function continues refining until * there are no hanging nodes. - * - * @note In the case of parallel codes, this function should be combined + * + * @note In the case of parallel codes, this function should be combined * with GridGenerator::flatten_triangulation. */ template @@ -1769,7 +1769,7 @@ namespace GridTools * * @param[in] max_iterations maximum number of iterations allowed. * - * @note In the case of parallel codes, this function should be combined + * @note In the case of parallel codes, this function should be combined * with GridGenerator::flatten_triangulation and remove_hanging_nodes. */ template diff --git a/tests/grid/grid_remove_hanging_nodes.cc b/tests/grid/grid_remove_hanging_nodes.cc index c1c849268a..67e17c6caf 100644 --- a/tests/grid/grid_remove_hanging_nodes.cc +++ b/tests/grid/grid_remove_hanging_nodes.cc @@ -19,7 +19,7 @@ #include #include #include -#include +#include #include #include #include -- 2.39.5