]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add a test. 5718/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Thu, 11 Jan 2018 01:58:14 +0000 (18:58 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 11 Jan 2018 01:58:14 +0000 (18:58 -0700)
tests/mpi/renumber_z_order_03.cc [new file with mode: 0644]
tests/mpi/renumber_z_order_03.mpirun=2.output [new file with mode: 0644]

diff --git a/tests/mpi/renumber_z_order_03.cc b/tests/mpi/renumber_z_order_03.cc
new file mode 100644 (file)
index 0000000..bef306f
--- /dev/null
@@ -0,0 +1,82 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2017 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE at
+// the top level of the deal.II distribution.
+//
+// ---------------------------------------------------------------------
+
+
+
+// Test that DofRenumbering::hierarchical() also works for a
+// parallel::shared::Triangulation
+
+
+#include "../tests.h"
+#include <deal.II/base/quadrature_lib.h>
+#include <deal.II/base/tensor.h>
+#include <deal.II/grid/tria.h>
+#include <deal.II/distributed/shared_tria.h>
+#include <deal.II/grid/grid_generator.h>
+#include <deal.II/grid/grid_out.h>
+#include <deal.II/dofs/dof_handler.h>
+#include <deal.II/dofs/dof_handler.h>
+#include <deal.II/dofs/dof_tools.h>
+#include <deal.II/grid/tria_accessor.h>
+#include <deal.II/grid/tria_iterator.h>
+#include <deal.II/dofs/dof_accessor.h>
+#include <deal.II/lac/trilinos_vector.h>
+#include <deal.II/dofs/dof_renumbering.h>
+#include <deal.II/fe/fe_dgq.h>
+#include <deal.II/fe/fe_values.h>
+
+
+
+int main (int argc, char *argv[])
+{
+  Utilities::MPI::MPI_InitFinalize mpi_initialization (argc, argv, 1);
+  mpi_initlog();
+
+  const int dim = 2;
+
+  dealii::FE_DGQ<dim> fe(0);
+
+  // create a p::s::Triangulation. specifically choose z-order, for
+  // which the algorithm previously worked by accident (because the
+  // partitioning of cells was contiguous in z-order)
+
+  dealii::parallel::shared::Triangulation<dim> tria_world(MPI_COMM_WORLD,
+                                                          dealii::Triangulation<dim>::none,
+                                                          false,
+                                                          parallel::shared::Triangulation<dim>::partition_zorder);
+  dealii::GridGenerator::hyper_cube(tria_world, -1, 1);
+  tria_world.refine_global(2);
+
+  dealii::DoFHandler<dim> dh_world(tria_world);
+  dh_world.distribute_dofs(fe);
+  dealii::DoFRenumbering::hierarchical(dh_world);
+
+  dealii::parallel::shared::Triangulation<dim> tria_self(MPI_COMM_SELF);
+  dealii::GridGenerator::hyper_cube(tria_self, -1, 1);
+  tria_self.refine_global(2);
+
+  dealii::DoFHandler<dim> dh_self(tria_self);
+  dh_self.distribute_dofs(fe);
+  dealii::DoFRenumbering::hierarchical(dh_self);
+
+  typename dealii::DoFHandler<dim>::active_cell_iterator cell_world = dh_world.begin_active(),
+                                                         endc_world = dh_world.end(), cell_self = dh_self.begin_active(), endc_self = dh_self.end();
+  for (; cell_world != endc_world && cell_self != endc_self; ++cell_world, ++cell_self)
+    if (cell_world->is_locally_owned())
+      Assert (cell_world->dof_index(0) == cell_self->dof_index(0),
+              ExcInternalError());
+
+  deallog << "OK" << std::endl;
+}
diff --git a/tests/mpi/renumber_z_order_03.mpirun=2.output b/tests/mpi/renumber_z_order_03.mpirun=2.output
new file mode 100644 (file)
index 0000000..0fd8fc1
--- /dev/null
@@ -0,0 +1,2 @@
+
+DEAL::OK

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


Typeset in Trocchi and Trocchi Bold Sans Serif.