neat.STree.pathBetweenNodesDepthFirst

STree.pathBetweenNodesDepthFirst(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