From 4b6da731c172c115969cd60555f44d02d39dc639 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 24 Jun 2017 19:32:02 -0600 Subject: [PATCH] Compress the result of complete_index_set(). --- include/deal.II/base/index_set.h | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.39.5