Delete Orthtree::Node class, now used nowhere

This commit is contained in:
JacksonCampolattaro 2023-08-31 12:48:52 +02:00
parent 4a379e575b
commit 77f240b1b6
1 changed files with 1 additions and 7 deletions

View File

@ -137,19 +137,13 @@ public:
*/
typedef std::array<std::uint32_t, Dimension::value> Global_coordinates;
/*!
* \brief The Sub-tree / Orthant type.
* todo: this should be removed
*/
class Node;
/*!
* \brief A predicate that determines whether a node must be split when refining a tree.
*/
typedef std::function<bool(Node_index, const Self&)> Split_predicate;
/*!
* \brief A model of `ConstRange` whose value type is `Node`.
* \brief A model of `ConstRange` whose value type is `Node_index`.
*/
#ifdef DOXYGEN_RUNNING
typedef unspecified_type Node_range;