// $Id$
// Version: $Name$
//
-// Copyright (C) 2009, 2010 by the deal.II authors
+// Copyright (C) 2009, 2010, 2011 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
* indices of the first system
* block, then all of the second
* block and so forth. The
- * function then outpus the index
+ * function then outputs the index
* in the standard local
* numbering of DoFAccessor.
*/
- unsigned int renumber (unsigned int i) const;
+ unsigned int renumber (const unsigned int i) const;
/**
* The number of base elements.
* Return the base element of
* this index.
*/
- unsigned int base_element(unsigned int i) const;
+ unsigned int base_element (const unsigned int i) const;
/**
* Write a summary of the block
inline
const BlockIndices&
-BlockInfo::level(unsigned int l) const
+BlockInfo::level (const unsigned int l) const
{
AssertIndexRange(l, levels.size());
return levels[l];
inline
-unsigned int BlockInfo::renumber(unsigned int i) const
+unsigned int BlockInfo::renumber (const unsigned int i) const
{
AssertIndexRange(i, local_renumbering.size());
return local_renumbering[i];
inline
unsigned int
-BlockInfo::base_element(unsigned int i) const
+BlockInfo::base_element (const unsigned int i) const
{
AssertIndexRange(i, base_elements.size());