From: Reza Rastak Date: Fri, 4 Oct 2019 23:17:30 +0000 (-0700) Subject: reorder part of the doc in P::D::SolutionTransfer X-Git-Tag: v9.2.0-rc1~996^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19e4f18ef2cc20204e1a8adc7252635f0b5d0c67;p=dealii.git reorder part of the doc in P::D::SolutionTransfer --- 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