26 #include <mln/util/tree_fast.hh>
40 mln_assertion(tree_fast.has (elt1));
41 tree_fast.add_child(tree_fast.search(elt1), elt2);
42 mln_assertion(tree_fast.has (elt2));
43 tree_fast.add_child(tree_fast.search(elt1), elt3);
44 mln_assertion(tree_fast.has (elt3));
45 tree_fast.add_child(tree_fast.search(elt2), elt4);
46 mln_assertion(tree_fast.has (elt4));
47 tree_fast.add_child(tree_fast.search(elt2), elt5);
48 mln_assertion(tree_fast.has (elt5));
49 tree_fast.add_parent(elt6);
50 mln_assertion(tree_fast.has (elt6));
51 mln_assertion(tree_fast.search(elt6) == tree_fast.root_);