Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/t8_schemes/t8_standalone/t8_standalone_elements.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,9 @@ typedef uint8_t t8_element_level;
typedef uint8_t t8_cube_id;
typedef uint8_t t8_child_id;

template <t8_eclass TEclass>
using t8_element_type = std::bitset<T8_ELEMENT_NUM_EQUATIONS[TEclass]>;
//template <t8_eclass TEclass>
//using t8_element_type = std::bitset<T8_ELEMENT_NUM_EQUATIONS[TEclass]>;
//using t8_element_type = u_int8_t;

template <t8_eclass TEclass>
using t8_element_coords = std::array<t8_element_coord, T8_ELEMENT_DIM[TEclass]>;
Expand All @@ -168,7 +169,7 @@ struct t8_standalone_element
/** The refinement level of the element relative to the root at level 0. */
t8_element_level level;
/** Bit array: which inequality is fulfilled at which level. */
t8_element_type<TEclass> type;
u_int8_t type;
};

#endif /* T8_STANDALONE_ELEMENTS_HXX */
Loading