Updated name from PDGTool to CIA

This commit is contained in:
Nicolas Amaya
2025-12-14 17:54:03 -07:00
parent c70db58e20
commit c40bdeb411
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ import java.util.*;
* PDG Tool: Change Impact Analysis
* Usage: java PDGTool <java-file> [line-number]
*/
public class PDGTool {
public class CIA {
public static void main(String[] args) {
if (args.length < 1) {

View File

@@ -69,6 +69,7 @@ public class PDG {
// 2. Compute reaching definitions
Map<String, Map<String, Set<String>>> reaching = computeReachingDefinitions(defs);
// TODO: check what happens whena node has multiple variable definitions
// 3. Build data dependencies
for (Node node : cfg.nodes()) {