print_tree_wrap Subroutine

private subroutine print_tree_wrap(self, uni)

Type Bound

tree_t

Arguments

Type IntentOptional Attributes Name
class(tree_t), intent(in) :: self
integer, intent(in) :: uni

Source Code

   subroutine print_tree_wrap(self, uni)
      implicit none
      ! type(tree_node_t), intent(in) :: tree(:)
      class(tree_t), intent(in) :: self
      integer, intent(in) :: uni

      call print_tree_internal(self%nodes, self%top, uni)
      write(uni, *) ''
   end subroutine print_tree_wrap