From: Wolfgang Bangerth Date: Tue, 27 Mar 2018 21:21:14 +0000 (-0600) Subject: Add a changelog entry. X-Git-Tag: v9.0.0-rc1~271^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6087%2Fhead;p=dealii.git Add a changelog entry. --- diff --git a/doc/news/changes/minor/20180320Bangerth-2 b/doc/news/changes/minor/20180320Bangerth-2 new file mode 100644 index 0000000000..ea969e7ff6 --- /dev/null +++ b/doc/news/changes/minor/20180320Bangerth-2 @@ -0,0 +1,9 @@ +Fixed: Previously, it was not possible to iterate over the local range +of rows of PETSc matrix objects because one would have to call +`matrix.end(row)` where `row` is the last locally owned row, and that +triggered an assertion because this end iterator is also the begin +iterator of the next row -- which is not locally owned any more. +
+This is now fixed. +
+(Feimi Yu, Wolfgang Bangerth, 2018/03/20)