You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to extend the slicing by adding support for dicing.
This should allow us to only select paths from a selection of start nodes that reach a given selection of end nodes. For this we want to utilize the current backwards slicing from the end nodes and find only those paths that lead to the start nodes.
Example:
Input:
a = 3
b = 4
c = a + b
--diced from a to c
Output:
a = 3
c = a + b
The text was updated successfully, but these errors were encountered:
We want to extend the slicing by adding support for dicing.
This should allow us to only select paths from a selection of start nodes that reach a given selection of end nodes. For this we want to utilize the current backwards slicing from the end nodes and find only those paths that lead to the start nodes.
Example:
Input:
a = 3
b = 4
c = a + b
--diced from a to c
Output:
a = 3
c = a + b
The text was updated successfully, but these errors were encountered: