neat.STree.path_between_nodes_depth_first

STree.path_between_nodes_depth_first(from_node, to_node)[source]

Inclusive path from from_node to to_node, ginven in a depth- first ordering.

Parameters:
  • from_node (neat.SNode)

  • to_node (neat.SNode)

Returns:

List of nodes representing the direct path between from_node and to_node, which are respectively the first and last nodes in the list.

Return type:

list of neat.SNode