From 87d1c0795da1d77e9f65822431b2b690e0e5e687 Mon Sep 17 00:00:00 2001 From: Pasquale Africa Date: Mon, 3 Jul 2023 15:39:21 +0000 Subject: [PATCH] Suppress warning in p::s::T --- include/deal.II/distributed/shared_tria.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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. -- 2.39.5