Skip to content

Commit

Permalink
Control Flow helper top level javaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Pine committed Apr 5, 2024
1 parent af64a20 commit bb7ebc7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
import java.util.List;
import java.util.Map;

/**
* A helper class for analyzing paths in the control flow graph
*/
public class ControlFlowPathHelper {
/**
* Memoization of paths.
*/
Map<ControlFlowNode, List<List<ControlFlowNode>>> pathsMemo = new HashMap<>();
private final Map<ControlFlowNode, List<List<ControlFlowNode>>> pathsMemo = new HashMap<>();

/**
* Get the set of possible paths to the exit node from a given starting node.
Expand Down

0 comments on commit bb7ebc7

Please sign in to comment.