From: Wolfgang Bangerth Date: Sun, 25 Jun 2017 01:32:02 +0000 (-0600) Subject: Compress the result of complete_index_set(). X-Git-Tag: v9.0.0-rc1~1474^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b6da731c172c115969cd60555f44d02d39dc639;p=dealii.git Compress the result of complete_index_set(). --- diff --git a/include/deal.II/base/index_set.h b/include/deal.II/base/index_set.h index 6a5e153197..cbf0022a4a 100644 --- a/include/deal.II/base/index_set.h +++ b/include/deal.II/base/index_set.h @@ -887,6 +887,7 @@ IndexSet complete_index_set (const unsigned int N) { IndexSet is (N); is.add_range(0, N); + is.compress(); return is; }