From: Rene Gassmoeller Date: Mon, 2 Nov 2015 14:24:15 +0000 (-0600) Subject: add entry in changes.h X-Git-Tag: v8.4.0-rc2~258^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c78a6c089d71a93b0e826d1e39deb8c50366a71a;p=dealii.git add entry in changes.h --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 7279e95c90..b0d64be256 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -159,6 +159,20 @@ inconvenience this causes.

General

    +
  1. Changed: The functionality to distribute cells across processes + according to a vector of cell weights that was passed in a call to + parallel::distributed::Triangulation::repartition() + was replaced by a cell-wise signal. This signal is called during + execute_coarsening_and_refinement and repartition + if any function is connected to it. It allows to connect a function that + takes the current cell iterator and a status argument that indicates whether + this cell will be refined, coarsened or remains unchanged and returns a + cell weight, which will be used to distribute cells across processes in a + way that keeps the sum of weights across each individual process + approximately equal. +
    + (Rene Gassmoeller, 2015/11/02) +
  2. New: 2nd derivatives are implemented for polynomials_BDM in 3D.