lucid/misc/graph_analysis/filter_overlay.py [42:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  dynamic_nodes = []

  def recursive_walk_forward(node):
    if node.name in dynamic_nodes: return
    dynamic_nodes.append(node.name)
    for next in node.consumers:
      recursive_walk_forward(next)

  recursive_walk_forward(graph.nodes[0])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lucid/scratch/pretty_graphs/graph.py [149:157]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  dynamic_nodes = []

  def recursive_walk_forward(node):
    if node.name in dynamic_nodes: return
    dynamic_nodes.append(node.name)
    for next in node.consumers:
      recursive_walk_forward(next)

  recursive_walk_forward(graph.nodes[0])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



