File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
spoon-control-flow/src/test/java/fr/inria/controlflow Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ public class ControlFlowPathHelper {
16
16
private final Map <ControlFlowNode , List <List <ControlFlowNode >>> pathsMemo = new HashMap <>();
17
17
18
18
/**
19
- * Get the set of possible paths to the exit node from a given starting node.
19
+ * Get a list of possible paths to the exit node from a given starting node.
20
20
*
21
21
* @param node Starting node
22
- * @return Set of possible paths
22
+ * @return List of possible paths
23
23
*/
24
24
List <List <ControlFlowNode >> paths (ControlFlowNode node ) {
25
25
if (pathsMemo .containsKey (node )) {
@@ -38,10 +38,10 @@ List<List<ControlFlowNode>> paths(ControlFlowNode node) {
38
38
}
39
39
40
40
/**
41
- * Get the set of possible paths to the exit node given a set of potentially incomplete paths.
41
+ * Get a list of possible paths to the exit node given a set of potentially incomplete paths.
42
42
*
43
43
* @param prior Set of potentially incomplete paths
44
- * @return Set of possible paths
44
+ * @return List of possible paths
45
45
*/
46
46
private List <List <ControlFlowNode >> paths (List <List <ControlFlowNode >> prior ) {
47
47
List <List <ControlFlowNode >> result = new ArrayList <>();
You can’t perform that action at this time.
0 commit comments