From: wolf Date: Mon, 12 May 2003 16:28:54 +0000 (+0000) Subject: Remove (again) from mainline. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f4a2a42744d4b79a8e56b18b4000150f32ccff4;p=dealii-svn.git Remove (again) from mainline. git-svn-id: https://svn.dealii.org/trunk@7636 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)); - } -}