* of active cells in the
* distributed triangulation.
*/
- unsigned int n_global_active_cells () const;
+ types::global_dof_index n_global_active_cells () const;
/**
* Returns the global maximum level. This may be bigger than n_levels.
struct NumberCache
{
std::vector<unsigned int> n_locally_owned_active_cells;
- unsigned int n_global_active_cells;
+ types::global_dof_index n_global_active_cells;
unsigned int n_global_levels;
};
* of active cells in the
* distributed triangulation.
*/
- unsigned int n_global_active_cells () const;
+ types::global_dof_index n_global_active_cells () const;
virtual unsigned int n_global_levels () const;
/**
template <int dim, int spacedim>
- unsigned int
+ types::global_dof_index
Triangulation<dim,spacedim>::n_global_active_cells () const
{
return number_cache.n_global_active_cells;
template <>
- unsigned int
+ types::global_dof_index
Triangulation<1,1>::n_global_active_cells () const
{
Assert (false, ExcNotImplemented());
template <>
- unsigned int
+ types::global_dof_index
Triangulation<1,2>::n_global_active_cells () const
{
Assert (false, ExcNotImplemented());
template <>
- unsigned int
+ types::global_dof_index
Triangulation<1,3>::n_global_active_cells () const
{
Assert (false, ExcNotImplemented());