From 19e4f18ef2cc20204e1a8adc7252635f0b5d0c67 Mon Sep 17 00:00:00 2001 From: Reza Rastak Date: Fri, 4 Oct 2019 16:17:30 -0700 Subject: [PATCH] reorder part of the doc in P::D::SolutionTransfer --- .../deal.II/distributed/solution_transfer.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/deal.II/distributed/solution_transfer.h b/include/deal.II/distributed/solution_transfer.h index fc7a76aec2..bcf737dab7 100644 --- a/include/deal.II/distributed/solution_transfer.h +++ b/include/deal.II/distributed/solution_transfer.h @@ -81,15 +81,6 @@ namespace parallel * soltrans.interpolate(interpolated_solution); * @endcode * - * Different from PETSc and Trilinos vectors, - * LinearAlgebra::distributed::Vector allows writing into ghost elements. - * For a ghosted vector the interpolation step can be accomplished via - * @code - * interpolated_solution.zero_out_ghosts(); - * soltrans.interpolate(interpolated_solution); - * interpolated_solution.update_ghost_values(); - * @endcode - * * As the grid is distributed, it is important to note that the old * solution(s) must be copied to one that also provides access to the * locally relevant DoF values (these values required for the interpolation @@ -125,6 +116,15 @@ namespace parallel * soltrans.interpolate(solution); * @endcode * + * Different from PETSc and Trilinos vectors, + * LinearAlgebra::distributed::Vector allows writing into ghost elements. + * For a ghosted vector the interpolation step can be accomplished via + * @code + * interpolated_solution.zero_out_ghosts(); + * soltrans.interpolate(interpolated_solution); + * interpolated_solution.update_ghost_values(); + * @endcode + * *

Use for Serialization

* * This class can be used to serialize and later deserialize a distributed -- 2.39.5