Assert (fe_index < dof_handler.finite_elements->size(),
ExcInternalError());
Assert (dof_handler.vertex_dof_offsets[vertex_index] !=
- numbers::invalid_dof_index,
+ numbers::invalid_unsigned_int,
ExcMessage ("This vertex is unused and has no DoFs associated with it"));
// hop along the list of index
"this DoFHandler"));
// if this vertex is unused, return 0
- if (dof_handler.vertex_dof_offsets[vertex_index] == numbers::invalid_dof_index)
+ if (dof_handler.vertex_dof_offsets[vertex_index] == numbers::invalid_unsigned_int)
return 0;
// hop along the list of index
// make sure we don't ask on
// unused vertices
Assert (dof_handler.vertex_dof_offsets[vertex_index] !=
- numbers::invalid_dof_index,
+ numbers::invalid_unsigned_int,
ExcInternalError());
// hop along the list of index
// make sure we don't ask on
// unused vertices
Assert (dof_handler.vertex_dof_offsets[vertex_index] !=
- numbers::invalid_dof_index,
+ numbers::invalid_unsigned_int,
ExcInternalError());
// hop along the list of index