From: Wolfgang Bangerth Date: Tue, 26 Mar 2024 23:29:49 +0000 (-0600) Subject: Add a changelog entry. X-Git-Tag: v9.6.0-rc1~450^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16790%2Fhead;p=dealii.git Add a changelog entry. --- diff --git a/doc/news/changes/incompatibilities/20240326Bangerth b/doc/news/changes/incompatibilities/20240326Bangerth new file mode 100644 index 0000000000..976bac0687 --- /dev/null +++ b/doc/news/changes/incompatibilities/20240326Bangerth @@ -0,0 +1,14 @@ +Removed: The Tensor<0,dim> template had functions `begin_raw()` and +`end_raw()`, which had been deprecated for a couple of releases +already. They have been removed now. +
+Furthermore, the corresponding functions for the general +Tensor template have been deprecated. They can still be used +for the time being, but only for the specific case `rank==1`. This is +because the underlying assumption of these functions is that tensors +store their elements in memory in a contiguous fashion, but that is +only true for the case `rank==1`. Similarly, the `make_array_view()` +function that takes tensors as input has been marked as deprecated, +and can only be used for rank-1 tensors from now on. +
+(Wolfgang Bangerth, 2024/03/26)