From: Timo Heister Date: Tue, 18 Aug 2015 21:21:46 +0000 (-0400) Subject: Merge pull request #965 from bangerth/use-fpe X-Git-Tag: v8.4.0-rc2~587 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=922214848c45090d5c3504e617ed1bee4a30dde0;p=dealii.git Merge pull request #965 from bangerth/use-fpe Use floating point exceptions to catch more errors in the testsuite. --- 922214848c45090d5c3504e617ed1bee4a30dde0 diff --cc doc/news/changes.h index ebcc17138e,553ae77f35..73000a826a --- a/doc/news/changes.h +++ b/doc/news/changes.h @@@ -76,35 -65,13 +76,41 @@@ inconvenience this causes
    +
  1. New: parallel::shared::Triangulation class which extends + Triangulation class to automatically partition triangulation when run + with MPI. Identical functionality between parallel::shared::Triangulation and + parallel::distributed::Triangulation is grouped in the parent class + parallel::Triangulation. +
    + (Denis Davydov, 2015/08/14) +
  2. + +
  3. New: The online documentation of all functions now includes + links to the file and line where that function is implemented. Both + are clickable to provide immediate access to the source code of a + function. +
    + (Jason Sheldon, Wolfgang Bangerth, 2015/08/13) +
  4. + +
  5. New: FE_RannacherTurek describes a discontinuous FiniteElement + with vanishing mean values of jumps across faces. +
    + (Patrick Esser, 2015/08/17) +
  6. + +
  7. New: FE_Q_Bubbles describes a FiniteElement based on FE_Q + enriched by bubble functions. +
    + (Daniel Arndt, 2015/08/12) +
  8. +
  9. New: The testsuite now runs in a mode in which we abort programs for + floating point exceptions due to divisions by zero or other invalid arithmetic. +
    + (Wolfgang Bangerth, 2015/07/29) +
  10. +
  11. New: MultithreadInfo::set_thread_limit() can now be called more than once and the environment variable DEAL_II_NUM_THREADS will be respected even if user code never calls it.