Package ai.cfg.edges

Examples of ai.cfg.edges.InputEdge


  public MethodControlFlowGraph(InterestingCodeFragment codeFragment) {
    this.codeFragment = codeFragment;
    this.start = new CFGVertice(codeFragment.getNode());
    this.end = new CFGVertice(null);
    this.inputEdge = new InputEdge(this.start, codeFragment);
    edges.add(inputEdge);
    this.vertices.add(start);
    this.vertices.add(end);

    this.start.addDescription("IN");
View Full Code Here

TOP

Related Classes of ai.cfg.edges.InputEdge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.