From fd55791f08053ed8cfe8708612e1c59faed6a506 Mon Sep 17 00:00:00 2001 From: Bruno Blais Date: Sun, 25 Feb 2024 13:51:53 -0500 Subject: [PATCH] Fix indent --- ...grid_generator_cylinder_shell_colorized.cc | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/tests/grid/grid_generator_cylinder_shell_colorized.cc b/tests/grid/grid_generator_cylinder_shell_colorized.cc index c4d7066e95..84f7f64164 100644 --- a/tests/grid/grid_generator_cylinder_shell_colorized.cc +++ b/tests/grid/grid_generator_cylinder_shell_colorized.cc @@ -32,40 +32,40 @@ test(std::ostream &out) { deallog << "cylinder_shell colorized with default aspect ratio" << std::endl; { - Triangulation tr; - GridGenerator::cylinder_shell(tr, 2., 5., 6., 0, 0, true); - - for (const auto &cell : tr.active_cell_iterators()) - { - deallog << "cell:" << std::endl; - - for (const auto &face : cell->face_iterators()) - { - if (face->at_boundary()) - deallog << "boundary id = " << face->boundary_id() - << " center = " << face->center() - << " faceidx = " << face->index() << std::endl; - } - } + Triangulation tr; + GridGenerator::cylinder_shell(tr, 2., 5., 6., 0, 0, true); + + for (const auto &cell : tr.active_cell_iterators()) + { + deallog << "cell:" << std::endl; + + for (const auto &face : cell->face_iterators()) + { + if (face->at_boundary()) + deallog << "boundary id = " << face->boundary_id() + << " center = " << face->center() + << " faceidx = " << face->index() << std::endl; + } + } } deallog << "cylinder_shell colorized with 3:2 ratio " << std::endl; { - Triangulation tr; - GridGenerator::cylinder_shell(tr, 2., 5., 6., 3, 2, true); - - for (const auto &cell : tr.active_cell_iterators()) - { - deallog << "cell:" << std::endl; - - for (const auto &face : cell->face_iterators()) - { - if (face->at_boundary()) - deallog << "boundary id = " << face->boundary_id() - << " center = " << face->center() - << " faceidx = " << face->index() << std::endl; - } - } + Triangulation tr; + GridGenerator::cylinder_shell(tr, 2., 5., 6., 3, 2, true); + + for (const auto &cell : tr.active_cell_iterators()) + { + deallog << "cell:" << std::endl; + + for (const auto &face : cell->face_iterators()) + { + if (face->at_boundary()) + deallog << "boundary id = " << face->boundary_id() + << " center = " << face->center() + << " faceidx = " << face->index() << std::endl; + } + } } } -- 2.39.5