From 3aaa99fdb686be28a22c9329d02cc7ebebcbab10 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 28 Oct 2016 10:05:16 -0600 Subject: [PATCH] Just minor style updates. --- source/distributed/shared_tria.cc | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/source/distributed/shared_tria.cc b/source/distributed/shared_tria.cc index ea0b8025cc..409539f5f5 100644 --- a/source/distributed/shared_tria.cc +++ b/source/distributed/shared_tria.cc @@ -39,8 +39,9 @@ namespace parallel const bool allow_artificial_cells): dealii::parallel::Triangulation(mpi_communicator,smooth_grid,false), allow_artificial_cells(allow_artificial_cells) - { - } + {} + + template void Triangulation::partition() @@ -85,6 +86,8 @@ namespace parallel } } + + template bool Triangulation::with_artificial_cells() const @@ -92,6 +95,8 @@ namespace parallel return allow_artificial_cells; } + + template const std::vector & Triangulation::get_true_subdomain_ids_of_cells() const @@ -99,11 +104,13 @@ namespace parallel return true_subdomain_ids_of_cells; } + + template Triangulation::~Triangulation () - { + {} + - } template void @@ -114,6 +121,8 @@ namespace parallel this->update_number_cache (); } + + template void Triangulation::create_triangulation (const std::vector< Point< spacedim > > &vertices, @@ -135,6 +144,8 @@ namespace parallel this->update_number_cache (); } + + template void Triangulation:: @@ -165,6 +176,8 @@ namespace parallel Assert (false, ExcNotImplemented()); } + + template bool Triangulation::with_artificial_cells() const @@ -173,6 +186,8 @@ namespace parallel return true; } + + template const std::vector & Triangulation::get_true_subdomain_ids_of_cells() const -- 2.39.5