Add Gradle build setup and updated analyzer files

This commit is contained in:
Nicolas Amaya
2025-10-26 21:28:55 -06:00
parent 82249f76ae
commit 1157885d92
11 changed files with 525 additions and 31 deletions

View File

@@ -0,0 +1,13 @@
package CFGGraph;
import org.jgrapht.graph.DefaultEdge;
public class CFGEdge extends DefaultEdge {
//path defines if its a True or False or Null (when either T or F resulkt on the same node)
private boolean path;
public CFGEdge(boolean path) {
this.path = path;
}
}