From: Wolfgang Bangerth Date: Tue, 13 Jan 2015 12:19:58 +0000 (-0600) Subject: Merge pull request #432 from kronbichler/master X-Git-Tag: v8.3.0-rc1~548 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f15db29f7589984c95fb29fb23ffde6055392eac;p=dealii.git Merge pull request #432 from kronbichler/master Bugfix of has_ghost_elements() of parallel vector --- f15db29f7589984c95fb29fb23ffde6055392eac diff --cc doc/news/changes.h index 309dedfb97,9a24a6574a..880aafa1b6 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@@ -179,9 -179,18 +179,18 @@@ inconvenience this causes

Specific improvements

    +
  1. Fixed: The update of ghost values in parallel::distributed::Vector when + calling the assignment operator is now active when one of the two vector had + its ghost values updated before or when the layout of the right hand side + vector is one-to-one, more consistent with parallel PETSc and Trilinos + vectors. +
    + (Martin Kronbichler, 2015/01/13) +
  2. +
  3. New: PETScWrappers::MPI::SparseMatrix::reinit(other) copies the layout of another matrix. TrilinosWrappers::SparseMatrix - operator= and copy constructor are now disabled. This brings + operator= and copy constructor are now disabled. This brings functionality between PETSc and Trilinos in line.
    (Timo Heister, 2015/01/12)