def test_find_node(self): t0 = Tree(2) t1 = Tree(3) forest = Forest([t0, t1]) t0.split() t00 = t0.get_child(0) t00.split() t001 = t00.get_child(1) self.assertEqual(forest.find_node([0, 0, 1]), t001) self.assertIsNone(forest.find_node([4, 5, 6]))
def test_add_remove_tree(self): forest = Forest() self.assertEqual(forest.n_children(), 0) node = Tree(3) forest.add_tree(node) self.assertEqual(forest.n_children(), 1) self.assertRaises(Exception, forest.add_tree, *(1, )) forest.remove_tree(0) self.assertEqual(forest.n_children(), 0)
def test_has_trees(self): # Empty forest has no trees forest = Forest() self.assertFalse(forest.has_children()) # Forest with two trees t0 = Tree(2) t1 = Tree(3) forest = Forest([t0, t1]) self.assertTrue(forest.has_children()) self.assertFalse(forest.has_children(flag=0)) # Mark one tree t0.mark(0) self.assertTrue(forest.has_children(flag=0)) self.assertFalse(forest.has_children(flag=1))
def test_constructor(self): # Must at least specify number of children self.assertRaises(Exception, Tree) # Quadnode node = Tree(n_children=4) self.assertEqual(len(node._children), 4, 'There should be 4 children.') # Tree in a forest forest = Forest() node = Tree(forest=forest, n_children=2)
def test_record(self): forest = Forest([Tree(2), Tree(2), Tree(2)]) for dummy in range(5): for child in forest.get_children(): if np.random.rand() > 0.5: child.split() forest.record(1) for tree in forest.traverse(): self.assertTrue(tree.is_marked(1))
def test_constructor(self): t0 = Tree(2) # Check whether all entries are Trees self.assertRaises(Exception, Forest, **{'trees': [t0, 0]}) # Check whether Trees are roots t0.split() t00 = t0.get_child(0) self.assertRaises(Exception, Forest, **{'trees': [t0, t00]}) t1 = Tree(4) forest = Forest([t0, t1]) self.assertEqual(len(forest._trees), 2)
def test_get_children(self): forest = Forest() self.assertEqual(forest.get_children(), []) forest = Forest([Tree(1), Tree(3), Tree(10)]) n_children = [1, 3, 10] i = 0 for child in forest.get_children(): self.assertEqual(child.get_node_position(), i) self.assertEqual(child.n_children(), n_children[i]) i += 1
def test_depth(self): # # Generate forest # forest = Forest([Tree(2), Tree(2)]) # # Split tree 0 three times # tree = forest.get_child(0) for dummy in range(3): tree.split() tree = tree.get_child(0) # Check that depth is 3 self.assertEqual(forest.depth(), 3) # Remove split tree and verify that depth is 0 forest.remove_tree(0) self.assertEqual(forest.depth(), 0)
def test_in_forest(self): # # Initialize forest with node # node = Tree(n_children=2) Forest([node]) self.assertTrue(node.in_forest(), 'Node should be in forest') # # Initialize empty forest # node = Tree(n_children=2) forest = Forest() # Node should not be in there self.assertFalse(node.in_forest(), 'Node should not be in a forest.') # Add node: NOW it's in the forest. forest.add_tree(node) self.assertTrue(node.in_forest(), 'Node should be in a forest.') # Remove node: it should no longer be there. forest.remove_tree(node.get_node_position()) self.assertFalse(node.in_forest(), 'Node should no longer be in the forest.')
def test_refine(self): # ===================================================================== # Simple Refineement # ===================================================================== # Define a new forest with two binary trees forest = Forest([Tree(2), Tree(2)]) # Refine the forest indiscriminantly forest.refine() # Check wether the trees have been split count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 6) # ===================================================================== # Refinement Label # ===================================================================== # Mark second tree and refine only by its label forest.get_child(1).mark(1) forest.refine(refinement_flag=1) # Nothing should have happened (because child is not a leaf) count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 6) forest.get_child(1).get_child(1).mark(1) forest.refine(refinement_flag=1) count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 8) # ===================================================================== # Refinement of subforest # ===================================================================== forest = Forest([Tree(2), Tree(2)]) forest.refine() # Define subforest forest.get_child(0).get_child(0).mark(1) forest.root_subtrees(1) # Check node count count = 0 for dummy in forest.traverse(1): count += 1 self.assertEqual(count, 4) forest.refine(subforest_flag=1) # Check node count count = 0 for dummy in forest.traverse(1): count += 1 self.assertEqual(count, 10) forest.coarsen(subforest_flag=1) count = 0 for dummy in forest.traverse(1): count += 1 self.assertEqual(count, 4) # Now try with a refinement flag forest.get_child(1).mark(2) forest.refine(subforest_flag=1, refinement_flag=2) # Check node count count = 0 for dummy in forest.traverse(1): count += 1 self.assertEqual(count, 6) # ===================================================================== # Refine with new label # ===================================================================== forest = Forest([Tree(2), Tree(2)]) forest.refine() # Define subforest forest.get_child(0).get_child(0).mark(1) forest.root_subtrees(1) # Check node count count = 0 for dummy in forest.traverse(1): count += 1 self.assertEqual(count, 4) forest.refine(subforest_flag=1, new_label=4) # Node count of new label count = 0 for dummy in forest.traverse(4): count += 1 self.assertEqual(count, 10) # Node count for original submesh count = 0 for dummy in forest.traverse(1): count += 1 self.assertEqual(count, 4) # Refinement marker forest.get_child(1).mark(3) # Refine forest.refine(subforest_flag=1, refinement_flag=3, new_label=5) # Check node count count = 0 for dummy in forest.traverse(5): count += 1 self.assertEqual(count, 6)
def test_traverse(self): # # Binary Tree # # Standard node = Tree(2) forest = Forest([node]) node.split() node.get_child(0).split() node.get_child(0).get_child(1).remove() addresses = { 'breadth-first': [[0], [0, 0], [0, 1], [0, 0, 0]], 'depth-first': [[0], [0, 0], [0, 0, 0], [0, 1]] } for mode in ['depth-first', 'breadth-first']: count = 0 for leaf in forest.traverse(mode=mode): self.assertEqual(leaf.get_node_address(), addresses[mode][count]), count += 1 # # QuadTree # node = Tree(4) forest = Forest([node]) node.split() node.get_child(1).split() node.get_child(1).get_child(2).remove() addresses = [[0], [0, 0], [0, 1], [0, 2], [0, 3], [0, 1, 0], [0, 1, 1], [0, 1, 3]] count = 0 for n in node.traverse(mode='breadth-first'): self.assertEqual(n.get_node_address(), addresses[count],\ 'Incorrect address.') count += 1 # # Forest with one quadtree and one bitree # bi = Tree(2) quad = Tree(4) forest = Forest([bi, quad]) bi.split() bi.get_child(0).split() quad.split() addresses = { 'breadth-first': [[0], [1], [0, 0], [0, 1], [1, 0], [1, 1], [1, 2], [1, 3], [0, 0, 0], [0, 0, 1]], 'depth-first': [[0], [0, 0], [0, 0, 0], [0, 0, 1], [0, 1], [1], [1, 0], [1, 1], [1, 2], [1, 3]] } for mode in ['depth-first', 'breadth-first']: count = 0 for leaf in forest.traverse(mode=mode): self.assertEqual(leaf.get_node_address(), addresses[mode][count]) count += 1
def test_coarsen(self): # ===================================================================== # Simple Coarsening # ===================================================================== # Define a new forest with two quadtrees forest = Forest([Tree(4), Tree(4)]) # Coarsen, nothing should happen forest.coarsen() # Check that forest is as it was count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 2) # Refine and coarsen again forest.refine() forest.coarsen() # Check that forest is as it was count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 2) # ===================================================================== # Coarsening Flag # ===================================================================== # Refine and mark one grandchild forest.refine() # Check that forest now has 10 Tree count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 10) forest.get_child(0).mark(1) forest.coarsen(coarsening_flag=1) # Tree 0 should not have children, while Tree 1 should have 4 count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 6) self.assertFalse(forest.get_child(0).has_children()) self.assertTrue(forest.get_child(1).has_children()) # Nothing is marked 1 self.assertFalse(any( child.is_marked(1) for child in forest.traverse())) # ===================================================================== # Coarsening with subforests # ===================================================================== forest = Forest([Tree(2), Tree(2)]) forest.refine() # Make a subforest 0, 00, 01, 1 forest.get_child(0).get_child(0).mark(2) forest.root_subtrees(2) count = 0 for node in forest.traverse(flag=2): count += 1 self.assertEqual(count, 4) # Coarsen the subforest forest.coarsen(subforest_flag=2) # Subforest now contains [0], [1] count = 0 for dummy in forest.traverse(flag=2): count += 1 self.assertEqual(count, 2) # Forest still contains 4 nodes (0,1,00,01,10,11) count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 6) # New subforest: 0, 00, 01, 1 forest.get_child(0).get_child(0).mark(2) forest.root_subtrees(2) # Count subforest nodes count = 0 for dummy in forest.traverse(2): count += 1 self.assertEqual(count, 4) # Coarsening flag at a node not in the subforest forest.get_child(1).get_child(1).mark(1) forest.coarsen(subforest_flag=2, coarsening_flag=1) # Count subforest nodes count = 0 for dummy in forest.traverse(2): count += 1 self.assertEqual(count, 4) # Apply coarsening flag to a node in the subforest forest.get_child(0).mark(1) # Coarsen forest.coarsen(subforest_flag=2, coarsening_flag=1) # Now there should be 2 subnodes count = 0 for dummy in forest.traverse(2): count += 1 self.assertEqual(count, 2) # Make sure the coarsening flag is deleted. self.assertFalse(forest.get_child(0).is_marked(1)) # ===================================================================== # Coarsening with new_label # ===================================================================== # TODO: TEST HERE. # Subforest is: 0, 00, 01, 1 forest.get_child(0).get_child(0).mark(2) forest.root_subtrees(2) # Mark [0,0] with coarsening flag forest.get_child(0).mark(1) # Coarsen subforest and label with new_label forest.coarsen(subforest_flag=2, coarsening_flag=1, new_label=3, debug=True) # Check that subforest still has the same nodes count = 0 for dummy in forest.traverse(2): count += 1 self.assertEqual(count, 4) # Check that the new submesh has fewer count = 0 for dummy in forest.traverse(3): count += 1 self.assertEqual(count, 2) # # Now with no submesh # # Check that forest still has 6 nodes count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 6) # Mark with coarsening flag forest.get_child(0).mark(1) # Coarsen forest.coarsen(coarsening_flag=1, new_label=4) # Check that forest still has 6 nodes count = 0 for dummy in forest.traverse(): count += 1 self.assertEqual(count, 6) # Check that subforest has 5 nodes count = 0 for dummy in forest.traverse(4): count += 1 self.assertEqual(count, 4)
def test_child(self): forest = Forest() self.assertRaises(Exception, forest.get_child, *(0, )) forest = Forest([Tree(1), Tree(4)]) self.assertEqual(forest.get_child(1).n_children(), 4)
def test_get_leaves(self): # # 1D # node = Tree(2) forest = Forest([node]) leaves = forest.get_leaves() # Only a ROOT node, it should be the only LEAF self.assertEqual(leaves, [node], 'Cell should be its own leaf.') # # Split cell and L child - find leaves # node.split() l_child = node.get_child(0) l_child.split() leaves = forest.get_leaves() self.assertEqual(len(leaves), 3, 'Cell should have 3 leaves.') # # Depth first order # addresses_depth_first = [[0, 0, 0], [0, 0, 1], [0, 1]] leaves = forest.get_leaves(mode='depth-first') for i in range(len(leaves)): leaf = leaves[i] self.assertEqual(leaf.get_node_address(), addresses_depth_first[i], 'Incorrect order, depth first search.') # # Breadth first order # addresses_breadth_first = [[0, 1], [0, 0, 0], [0, 0, 1]] leaves = node.get_leaves(mode='breadth-first') for i in range(len(leaves)): leaf = leaves[i] self.assertEqual(leaf.get_node_address(), addresses_breadth_first[i], 'Incorrect order, breadth first search.') node.get_child(0).get_child(0).mark('1') node.get_child(1).mark('1') node.make_rooted_subtree('1') leaves = node.get_leaves(subtree_flag='1') self.assertEqual(len(leaves),2, \ 'There should only be 2 flagged leaves') # # 2D # node = Tree(4) forest = Forest([node]) # # Split cell and SW child - find leaves # node.split() sw_child = node.get_child(0) sw_child.split() leaves = node.get_leaves() self.assertEqual(len(leaves), 7, 'Node should have 7 leaves.') # # Nested traversal # leaves = node.get_leaves() self.assertEqual(leaves[0].get_node_address(),[0,1], \ 'The first leaf in the nested enumeration should have address [1]') leaves = node.get_leaves(mode='depth-first') self.assertEqual(leaves[0].get_node_address(), [0,0,0], \ 'First leaf in un-nested enumeration should be [0,0].') # # Merge SW child - find leaves # sw_child.delete_children() leaves = node.get_leaves() self.assertEqual(len(leaves), 4, 'Node should have 4 leaves.') # # Marked Leaves # node = Tree(4) node.mark(1) forest = Forest([node]) self.assertTrue(node in forest.get_leaves(flag=1), \ 'Node should be a marked leaf node.') self.assertTrue(node in forest.get_leaves(), \ 'Node should be a marked leaf node.') node.split() sw_child = node.get_child(0) sw_child.split() sw_child.mark(1) self.assertEqual(node.get_leaves(subtree_flag=1), \ [sw_child], 'SW child should be only marked leaf') sw_child.remove() self.assertEqual(forest.get_leaves(subforest_flag=1), \ [node], 'node should be only marked leaf') # # Nested traversal # node = Tree(4) node.split() forest = Forest([node]) for child in node.get_children(): child.split() node.get_child(1).mark(1, recursive=True) node.get_child(3).mark(1) forest.root_subtrees(1) leaves = forest.get_leaves(subforest_flag=1) self.assertEqual(len(leaves), 7, 'This tree has 7 flagged LEAF nodes.') self.assertEqual(leaves[0], node.get_child(0), 'The first leaf should be the NE child.') self.assertEqual(leaves[3], node.get_child(1).get_child(0), '4th flagged leaf should be SE-NW grandchild.')