From: Doug Shi-Dong Date: Thu, 26 Sep 2019 19:35:30 +0000 (-0400) Subject: Add changelog for #8861 X-Git-Tag: v9.2.0-rc1~1013^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8867%2Fhead;p=dealii.git Add changelog for #8861 --- diff --git a/doc/news/changes/minor/20190926DougShiDong-1 b/doc/news/changes/minor/20190926DougShiDong-1 new file mode 100644 index 0000000000..4920b843d2 --- /dev/null +++ b/doc/news/changes/minor/20190926DougShiDong-1 @@ -0,0 +1,10 @@ +Fixed: Manifold::get_new_point() previously ignored points weighted negatively. +The original intent was to avoid to divide by a 0 weight, but the condition +weight < tolerance resulted in ignoring negative weights. +Additionally, the same function previously avoided get_intermediate_point() +when the weight of of the first point was 0, but forgot to assign the new +intermediate point to be the second point. +The issues would mainly occur for derived Manifold classes that only implement +the get_intermediate_point() function. Both issues are now fixed. +
+(Doug Shi-Dong, 2019/09/26)