From: Daniel Arndt <arndtd@ornl.gov>
Date: Tue, 28 Jan 2020 20:47:53 +0000 (-0500)
Subject: Fix a few parallel::fullydistributed tests
X-Git-Tag: v9.2.0-rc1~599^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd75bcd2f3cd49b4aaf5c11124632c8758f9fd37;p=dealii.git

Fix a few parallel::fullydistributed tests
---

diff --git a/include/deal.II/base/mpi_tags.h b/include/deal.II/base/mpi_tags.h
index 38dd155189..538b9e5f6b 100644
--- a/include/deal.II/base/mpi_tags.h
+++ b/include/deal.II/base/mpi_tags.h
@@ -95,8 +95,7 @@ namespace Utilities
           /// ConsensusAlgorithm_PEX::process
           consensus_algorithm_pex_process_deliver,
 
-          /// ConstructionData<dim,
-          /// spacedim>::create_construction_data_from_triangulation_in_groups()
+          /// TriangulationDescription::Utilities::create_description_from_triangulation()
           fully_distributed_create,
 
           /// TriangulationBase<dim, spacedim>::fill_level_ghost_owners()
diff --git a/tests/fullydistributed_grids/copy_distributed_tria_03.cc b/tests/fullydistributed_grids/copy_distributed_tria_03.cc
index 5faddbff15..6653b2c769 100644
--- a/tests/fullydistributed_grids/copy_distributed_tria_03.cc
+++ b/tests/fullydistributed_grids/copy_distributed_tria_03.cc
@@ -20,7 +20,6 @@
 #include <deal.II/base/mpi.h>
 
 #include <deal.II/distributed/fully_distributed_tria.h>
-#include <deal.II/distributed/fully_distributed_tria_util.h>
 #include <deal.II/distributed/shared_tria.h>
 #include <deal.II/distributed/tria.h>
 
@@ -51,8 +50,9 @@ test(int n_refinements, const int n_subdivisions, MPI_Comm comm)
   parallel::fullydistributed::Triangulation<dim> tria_pft(comm);
 
   // extract relevant information form pdt
-  auto construction_data = parallel::fullydistributed::Utilities::
-    create_construction_data_from_triangulation(tria_pdt, comm, true);
+  auto construction_data =
+    TriangulationDescription::Utilities::create_description_from_triangulation(
+      tria_pdt, comm, true);
 
   // actually create triangulation
   tria_pft.create_triangulation(construction_data);
diff --git a/tests/fullydistributed_grids/copy_serial_tria_08.cc b/tests/fullydistributed_grids/copy_serial_tria_08.cc
index ffa76144a3..1fa5ebd683 100644
--- a/tests/fullydistributed_grids/copy_serial_tria_08.cc
+++ b/tests/fullydistributed_grids/copy_serial_tria_08.cc
@@ -20,7 +20,6 @@
 #include <deal.II/base/mpi.h>
 
 #include <deal.II/distributed/fully_distributed_tria.h>
-#include <deal.II/distributed/fully_distributed_tria_util.h>
 #include <deal.II/distributed/shared_tria.h>
 #include <deal.II/distributed/tria.h>
 
@@ -53,8 +52,9 @@ test(int n_refinements, MPI_Comm comm)
   parallel::fullydistributed::Triangulation<dim> tria_pft(comm);
 
   // extract relevant information form serial triangulation
-  auto construction_data = parallel::fullydistributed::Utilities::
-    create_construction_data_from_triangulation(basetria, comm, true);
+  auto construction_data =
+    TriangulationDescription::Utilities::create_description_from_triangulation(
+      basetria, comm, true);
 
   // actually create triangulation
   tria_pft.create_triangulation(construction_data);