33 elements_(mesh_->element_box_),
34 main_box_(mesh_->mesh_box_),
35 leaf_size_limit(soft_leaf_size_limit), r_gen(123)
74 double left_bound=node_box.
min(axis);
75 double right_bound=node_box.
max(axis);
79 left_bound = std::max( left_bound,
elements_[ *
left ].max(axis) );
85 right_bound = std::min( right_bound,
elements_[ *
right ].min(axis) );
94 left_bound = std::max( left_bound,
elements_[ *
left ].max(axis) );
98 right_bound = std::min( right_bound,
elements_[ *
right ].min(axis) );
103 unsigned int right_end = node.
leaf_end();
104 unsigned int depth = node.
depth()+1;
108 nodes_.back().set_leaf(left_begin, left_end, left_bound, depth);
110 nodes_.back().set_leaf(left_end, right_end, right_bound, depth);
168 unsigned int median_idx;
169 unsigned int n_elements = node.
leaf_size();
190 coors_.resize(n_elements);
191 for (
unsigned int i=0; i<
coors_.size(); i++) {
198 unsigned int median_position = (
unsigned int)(
coors_.size() / 2);
201 return coors_[median_position];
217 std::stack<unsigned int, std::vector<unsigned int> > node_stack;
220 unsigned int counter = 0;
222 while (! node_stack.empty()) {
243 node_stack.push( node.
child(0) );
247 node_stack.push( node.
child(1) );
255 #ifdef FLOW123D_DEBUG_ASSERTS 258 sort(cpy.begin(), cpy.end());
void set_max(unsigned int axis, double max)
static const double size_reduce_factor
required reduction in size of box to allow further splitting
unsigned int leaf_end() const
Bounding box in 3d ambient space.
unsigned int child(unsigned int i_child) const
Return index of child node.
unsigned char longest_axis() const
unsigned int max_n_levels
Maximal count of BIH tree levels.
void split_node(const BoundingBox &node_box, unsigned int node_idx)
create bounding boxes of element
BoundingBox & main_box_
Main bounding box. (from mesh)
double estimate_median(unsigned char axis, const BIHNode &node)
std::vector< BoundingBox > & elements_
vector of mesh elements bounding boxes (from mesh)
void compute_element_boxes()
Precompute element bounding boxes if it is not done yet.
void make_node(const BoundingBox &box, unsigned int node_idx)
create child nodes of node given by node_idx
Global macros to enhance readability and debugging, general constants.
unsigned int n_elements() const
void find_bounding_box(const BoundingBox &boundingBox, std::vector< unsigned int > &result_list, bool full_list=false) const
unsigned int leaf_size_limit
Maximal number of elements stored in a leaf node of BIH tree.
arma::vec::fixed< spacedim > Point
const BoundingBox & tree_box() const
bool projection_lt(unsigned int axis, double value) const
const Point & max() const
unsigned char depth() const
return depth of leaf node
bool projection_gt(unsigned int axis, double value) const
BIHTree(Mesh *mesh, unsigned int soft_leaf_size_limit=20)
std::vector< double > coors_
temporary vector stored values of coordinations for calculating median
void swap(nlohmann::json &j1, nlohmann::json &j2) noexcept(is_nothrow_move_constructible< nlohmann::json >::value andis_nothrow_move_assignable< nlohmann::json >::value)
exchanges the values of two JSON objects
std::vector< unsigned int > in_leaves_
vector stored element indexes in leaf nodes
unsigned int get_element_count() const
unsigned int leaf_size() const
void find_point(const Space< 3 >::Point &point, std::vector< unsigned int > &result_list, bool full_list=false) const
unsigned int axis() const
return axes (coordination of splitting) of inner node
void set_min(unsigned int axis, double min)
#define OLD_ASSERT_EQUAL(a, b)
bool is_leaf() const
return true if node is leaf
const Point & min() const
unsigned int leaf_begin() const
const BoundingBox & ele_bounding_box(unsigned int ele_idx) const
Gets bounding box of element of given index ele_index.
std::vector< BIHNode > nodes_
vector of tree nodes