From: Marc Fehling Date: Fri, 10 May 2019 16:39:56 +0000 (+0200) Subject: Adjusted changelog for #7899. X-Git-Tag: v9.1.0-rc1~86^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6857724ab41d4b5bd51f28c8f7def192cbe0d2ee;p=dealii.git Adjusted changelog for #7899. --- diff --git a/doc/news/changes/minor/20190408MarcFehling b/doc/news/changes/minor/20190408MarcFehling index 497e240c12..f60e1c7118 100644 --- a/doc/news/changes/minor/20190408MarcFehling +++ b/doc/news/changes/minor/20190408MarcFehling @@ -1,4 +1,4 @@ -New: Member function hp::FECollection::find_common_subspace() +New: Member function hp::FECollection::find_common_fes() returns a set of indices from the full FECollection whose associated finite elements dominate all elements of a given set of indices.
diff --git a/doc/news/changes/minor/20190408MarcFehling-1 b/doc/news/changes/minor/20190408MarcFehling-1 index b0427c8838..d3d4d9079c 100644 --- a/doc/news/changes/minor/20190408MarcFehling-1 +++ b/doc/news/changes/minor/20190408MarcFehling-1 @@ -1,4 +1,4 @@ -New: Member function hp::FECollection::find_encapsulating_space() +New: Member function hp::FECollection::find_enclosing_fes() returns a set of indices from the full FECollection whose associated finite elements are dominated by all elements of a given set of indices.
diff --git a/doc/news/changes/minor/20190408MarcFehling-4 b/doc/news/changes/minor/20190408MarcFehling-4 new file mode 100644 index 0000000000..1fb23b45cb --- /dev/null +++ b/doc/news/changes/minor/20190408MarcFehling-4 @@ -0,0 +1,6 @@ +New: Member function hp::FECollection::find_dominating_fe_extended() +returns the index of the most dominating finite element out of a given +set of indices. If none was found, the search will be extended on the +complete collection. +
+(Marc Fehling, 2019/04/08) diff --git a/doc/news/changes/minor/20190408MarcFehling-5 b/doc/news/changes/minor/20190408MarcFehling-5 new file mode 100644 index 0000000000..d21d050dd2 --- /dev/null +++ b/doc/news/changes/minor/20190408MarcFehling-5 @@ -0,0 +1,6 @@ +New: Member function hp::FECollection::find_dominated_fe_extended() +returns the index of the least dominating finite element out of a given +set of indices. If none was found, the search will be extended on the +complete collection. +
+(Marc Fehling, 2019/04/08)