From 72e4ddaba8d24a5508c80f2c336335dd88d3e985 Mon Sep 17 00:00:00 2001 From: "kainan.wang" Date: Tue, 7 May 2013 16:58:38 +0000 Subject: [PATCH] Add two authors; make a correction in documentation git-svn-id: https://svn.dealii.org/trunk@29475 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/authors.html | 6 ++++++ deal.II/include/deal.II/numerics/vector_tools.h | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/deal.II/doc/authors.html b/deal.II/doc/authors.html index 8791f3008a..033fb196dc 100644 --- a/deal.II/doc/authors.html +++ b/deal.II/doc/authors.html @@ -271,6 +271,12 @@
  • Christophe Trophime: Packaging and configuration issues. +
  • Bruno Turcksin: + Extending deal.ii for 64-bit integer support. + +
  • Kainan Wang: + Extending deal.ii for 64-bit integer support. +
  • Yaqi Wang: The step-28 tutorial program;   diff --git a/deal.II/include/deal.II/numerics/vector_tools.h b/deal.II/include/deal.II/numerics/vector_tools.h index 7925f81f64..12fa9add4e 100644 --- a/deal.II/include/deal.II/numerics/vector_tools.h +++ b/deal.II/include/deal.II/numerics/vector_tools.h @@ -1975,7 +1975,7 @@ namespace VectorTools * NormType::L2_norm); * const double total_local_error = local_errors.l2_norm(); * const double total_global_error - * = std::sqrt (Utilities::MPI::sum (total_local_error * total_local_error)); + * = std::sqrt (Utilities::MPI::sum (total_local_error * total_local_error, MPI_COMM_WORLD)); * @endcode * The squaring and taking the square root is necessary in order to * compute the sum of squares of norms over all all cells in the definition @@ -1988,7 +1988,7 @@ namespace VectorTools * @code * const double total_local_error = local_errors.l1_norm(); * const double total_global_error - * = Utilities::MPI::sum (total_local_error); + * = Utilities::MPI::sum (total_local_error, MPI_COMM_WORLD); * @endcode * instead, and similar considerations hold when computing the $L_\infty$ * norm of the error. -- 2.39.5