From: Daniel Arndt Date: Mon, 4 Sep 2017 23:40:40 +0000 (+0200) Subject: Changelog entry X-Git-Tag: v9.0.0-rc1~1079^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7dba20ff099c1474966c6129d57a90981e52426;p=dealii.git Changelog entry --- diff --git a/doc/news/changes/minor/20170905DanielArndt b/doc/news/changes/minor/20170905DanielArndt new file mode 100644 index 0000000000..134d8fc920 --- /dev/null +++ b/doc/news/changes/minor/20170905DanielArndt @@ -0,0 +1,12 @@ +New: The newly implemented FiniteElement::operator^ allows in combination +with the new variadic template constructor or the new std::initializer_list +constructor for FESystem to construct +FESystem objects using syntax like +@code + FESystem fe_system1 ({FiniteElementType1^n1, + FiniteElementType2^n2}); + FESystem fe_system2 (FiniteElementType1^n3, + FiniteElementType2^n4); +@endcode +
+(Daniel Arndt, 2017/09/05)