16 #include "discrete_problem/dg/multimesh_dg_neighbor_tree_node.h"
23 MultimeshDGNeighborTreeNode::MultimeshDGNeighborTreeNode(MultimeshDGNeighborTreeNode* parent,
unsigned int transformation) : parent(parent), transformation(transformation)
25 left_son = right_son =
nullptr;
27 MultimeshDGNeighborTreeNode::~MultimeshDGNeighborTreeNode()
40 void MultimeshDGNeighborTreeNode::set_left_son(MultimeshDGNeighborTreeNode* left_son)
42 this->left_son = left_son;
44 void MultimeshDGNeighborTreeNode::set_right_son(MultimeshDGNeighborTreeNode* right_son)
46 this->right_son = right_son;
48 void MultimeshDGNeighborTreeNode::set_transformation(
unsigned int transformation)
50 this->transformation = transformation;
52 MultimeshDGNeighborTreeNode* MultimeshDGNeighborTreeNode::get_left_son()
56 MultimeshDGNeighborTreeNode* MultimeshDGNeighborTreeNode::get_right_son()
60 unsigned int MultimeshDGNeighborTreeNode::get_transformation()
62 return this->transformation;
Common definitions for Hermes2D.