-
Data flow notation shows a visual program as a directed graph of blocks
and links. links show the flow of the data. and blocks represent
operations on the data.
|

|
-
Extending data flow notation to support iterative and conditional control
flow is relatively simple. Both these control constructs use data in their
conditions, so they require only small extensions to the inteface.
|

|
-
Extending data flow notation to support sequential control flow is more
difficult as there is no data dependency.
|
-
Several techniques have been used to make this extension. All of these
techniques increase the complexity of notaion.
|