From: Martin Kronbichler Date: Tue, 26 Apr 2016 09:38:13 +0000 (+0200) Subject: Add changelog entry X-Git-Tag: v8.5.0-rc1~1076^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14f49bf38f530197ee4ff32824aaca2fa69310db;p=dealii.git Add changelog entry --- diff --git a/doc/news/changes.h b/doc/news/changes.h index b22f6ffc36..0965897dc0 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -38,6 +38,21 @@ inconvenience this causes.

    +
  1. Changed: deal.II used to create template instantiations for scalar + types double, float, and long double. Since + long double is rarely used and the additional precision does + usually not pay off because most of the other arithmetics in deal.II are + only done using double variables, it is not instantiated by default + any more. This reduces the library size by up to 20 percent. In case you + need instantiations of certain methods using long double data + structures and get linker errors stating undefined symbols involving + long double, include the respective .templates.h file(s) + with the code definitions. See the section on @ref Instantiations in the + manual for further information. +
    + (Martin Kronbichler, 2016/04/26) +
  2. +
  3. Improved: MeshWorker treats periodic faces as interior faces.
    (Daniel Arndt, 2016/04/18)