From: Wolfgang Bangerth Date: Thu, 16 Jan 2025 16:03:44 +0000 (-0700) Subject: Add a changelog entry. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18003%2Fhead;p=dealii.git Add a changelog entry. --- diff --git a/doc/news/changes/incompatibilities/20250116Bangerth-2 b/doc/news/changes/incompatibilities/20250116Bangerth-2 new file mode 100644 index 0000000000..0c54e094c2 --- /dev/null +++ b/doc/news/changes/incompatibilities/20250116Bangerth-2 @@ -0,0 +1,12 @@ +Changed: The function FETools::compute_face_embedding_matrices() used +to take its second argument as a fixed-size (C-style) array of +matrices of size `GeometryInfo::max_children_per_face`. This has +been changed to be an object of type `ArrayView>` +to allow for storage of that array in other ways, say as an object of +type `std::vector>`. To convert old code, you may +have to explicitly call the function with its template arguments, say +as `FETools::compute_face_embedding_matrices +(Wolfgang Bangerth, 2024/01/16)