From: Wolfgang Bangerth Date: Wed, 18 Dec 2024 04:29:20 +0000 (-0700) Subject: Add a changelog entry. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b84f09eb99f70dedfc052f1ceee04d113d83777;p=dealii.git Add a changelog entry. --- diff --git a/doc/news/changes/incompatibilities/20241217Bangerth b/doc/news/changes/incompatibilities/20241217Bangerth new file mode 100644 index 0000000000..3c79523dfa --- /dev/null +++ b/doc/news/changes/incompatibilities/20241217Bangerth @@ -0,0 +1,10 @@ +Changed: Mapping::transform_points_real_to_unit_cell() used to +designate points for which it could not successfully find reference +coordinates by setting the first vector component to +`std::numeric_limits::infinity()`. Unfortunately, on some +platforms, the use of infinities leads to dramatically slower code +execution. As a consequence, we now use the (finite) value +`std::numeric_limits::lowest()` (somewhere around `-1e308`) to +denote invalid values. +
+(Wolfgang Bangerth, 2024/12/17)