From 8aca4e515cdf500effc3e7da11acde50150a2f5d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 12 May 2003 16:28:54 +0000 Subject: [PATCH] Remove (again) from mainline. git-svn-id: https://svn.dealii.org/trunk@7636 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/hp_dof_levels.cc | 45 -------------------- 1 file changed, 45 deletions(-) delete mode 100644 deal.II/deal.II/source/dofs/hp_dof_levels.cc diff --git a/deal.II/deal.II/source/dofs/hp_dof_levels.cc b/deal.II/deal.II/source/dofs/hp_dof_levels.cc deleted file mode 100644 index 858cbec290..0000000000 --- a/deal.II/deal.II/source/dofs/hp_dof_levels.cc +++ /dev/null @@ -1,45 +0,0 @@ -//---------------------------- hp_dof_levels.cc --------------------------- -// $Id$ -// Version: $Name$ -// -// Copyright (C) 2003 by the deal.II authors -// -// This file is subject to QPL and may not be distributed -// without copyright and license information. Please refer -// to the file deal.II/doc/license.html for the text and -// further information on this license. -// -//---------------------------- hp_dof_levels.cc --------------------------- - - -#include -#include - - -namespace internal -{ - - unsigned int - hpDoFLevel<1>::memory_consumption () const - { - return MemoryConsumption::memory_consumption (line_dofs); - } - - - - unsigned int - hpDoFLevel<2>::memory_consumption () const - { - return (hpDoFLevel<1>::memory_consumption () + - MemoryConsumption::memory_consumption (quad_dofs)); - } - - - - unsigned int - hpDoFLevel<3>::memory_consumption () const - { - return (hpDoFLevel<2>::memory_consumption () + - MemoryConsumption::memory_consumption (hex_dofs)); - } -} -- 2.39.5