From 783d89178ea691088980ad134e1fd2bf093c33b0 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 10 Sep 2013 18:18:22 +0000 Subject: [PATCH] Add missing fields to memory_consumption(). git-svn-id: https://svn.dealii.org/trunk@30667 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/hp/dof_level.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/source/hp/dof_level.cc b/deal.II/source/hp/dof_level.cc index 8215acd3da..fc11565a33 100644 --- a/deal.II/source/hp/dof_level.cc +++ b/deal.II/source/hp/dof_level.cc @@ -218,7 +218,9 @@ namespace internal { return (MemoryConsumption::memory_consumption (active_fe_indices) + MemoryConsumption::memory_consumption (dof_indices) + - MemoryConsumption::memory_consumption (dof_offsets)); + MemoryConsumption::memory_consumption (dof_offsets) + + MemoryConsumption::memory_consumption (cell_cache_offsets) + + MemoryConsumption::memory_consumption(cell_dof_indices_cache)); } -- 2.39.5