Returns the list of all previous points of the current point in the data flow graph.
Last updated 1 month ago
backward_df() β APISet[Point]
backward_df() β
APISet
[
Point
]
from glider import * def query(): instructions = Instructions().exec(1,2) backward_dfs = instructions[0].backward_df() for backward_df in backward_dfs: print(backward_df.source_code()) return instructions