* these orientation indices.
*/
template <typename T>
- unsigned int
+ unsigned char
get_orientation_index(const ArrayView<const T> &vertices_0,
const ArrayView<const T> &vertices_1) const;
template <typename T>
boost::container::small_vector<T, 8>
reorient_based_on_orientation_index(const ArrayView<const T> &vertices,
- const unsigned int orientation) const;
+ const unsigned char orientation) const;
/**
* Return a vector of faces a given @p vertex_index belongs to.
template <typename T>
-unsigned int
+unsigned char
ReferenceCell::get_orientation_index(const ArrayView<const T> &vertices_0,
const ArrayView<const T> &vertices_1) const
{
boost::container::small_vector<T, 8>
ReferenceCell::reorient_based_on_orientation_index(
const ArrayView<const T> &vertices,
- const unsigned int orientation) const
+ const unsigned char orientation) const
{
Assert(vertices.size() == n_vertices(),
ExcMessage("The number of array elements must be equal to "