Point.has_extended_global_df()
Returns true if the point has a dependency on external variables in the current data flow graph and outside of that, false otherwise.
Last updated
Returns true if the point has a dependency on external variables in the current data flow graph and outside of that, false otherwise.
Last updated
has_extended_global_df() → bool
Let's dive into the difference between has_extended_global_df()
and has_global_df()
.
The function has_extended_global_df()
works recursively, whereas has_global_df()
does not. In the previous example, as well as in the example using has_global_df()
, no significant differences were observed. However, in the example below, we can clearly see the distinction between the two functions.
The following query demonstrates the difference: has_global_df()
returns 259
instructions, while has_extended_global_df()
returns 261
instructions.