From: Pasquale Africa Date: Mon, 3 Jul 2023 15:39:21 +0000 (+0000) Subject: Suppress warning in p::s::T X-Git-Tag: relicensing~760^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87d1c0795da1d77e9f65822431b2b690e0e5e687;p=dealii.git Suppress warning in p::s::T --- diff --git a/include/deal.II/distributed/shared_tria.h b/include/deal.II/distributed/shared_tria.h index 50d619426d..8cfa46f8dd 100644 --- a/include/deal.II/distributed/shared_tria.h +++ b/include/deal.II/distributed/shared_tria.h @@ -320,6 +320,22 @@ namespace parallel copy_triangulation( const dealii::Triangulation &other_tria) override; + /** + * Save the triangulation into the given file. This file needs to be + * reachable from all nodes in the computation on a shared network file + * system. See the SolutionTransfer class on how to store solution vectors + * into this file. Additional cell-based data can be saved using + * register_data_attach(). + */ + using parallel::TriangulationBase::save; + + /** + * Load the triangulation saved with save() back in. Cell-based data that + * was saved with register_data_attach() can be read in with + * notify_ready_to_unpack() after calling load(). + */ + using parallel::TriangulationBase::load; + /** * Read the data of this object from a stream for the purpose of * serialization. Throw away the previous content.