From: Martin Kronbichler Date: Thu, 13 Aug 2020 13:56:34 +0000 (+0200) Subject: Add changelog on EvaluationFlags X-Git-Tag: v9.3.0-rc1~1184^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0de074b91e07143a80f917f0a25f67e5eaacc496;p=dealii.git Add changelog on EvaluationFlags --- diff --git a/doc/news/changes/minor/20200605Heister b/doc/news/changes/minor/20200605Heister new file mode 100644 index 0000000000..57a001f53f --- /dev/null +++ b/doc/news/changes/minor/20200605Heister @@ -0,0 +1,9 @@ +New: FEEvaluation::evaluate(), FEEvaluation::integrate(), +FEFaceEvaluation::evaluate() and FEFaceEvaluation::integrate() now take an +argument of type EvaluationFlags::EvaluationFlags to determine which of the +values, gradients or hessians should be evaluated to quadrature points or +integrated, allowing much more expressive programs than the previous list of +bools. The evaluation flags can be combined with `operator|`, similarly to +UpdateFlags for FEValues. +
+(Timo Heister, 2020/06/05)