Let's assume I've got a graph of a signal flow based "programm" (e.g. something similar to Simulink). I.e. I've got a directed graph with a few starting nodes and a few end nodes as well as lots of nodes inbetween (and hopefully no circular relation)
Is there a good and/or well known algorithm (perhaps even available as a Python library) that will walk that graph and give me the computation order?
Example (direction not showed, assume the obvious):
In1 In2
\ \
[-] [*]-- Out1
/ \ /
In3 [+]------ Out2
/
In4
This should result in the instructions / order:
1. tmp1 := In1 - In3 2. Out2 := tmp1 + In4 3. Out1 := In2 * Out2
Thanks!