All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sootup.analysis.intraprocedural.ForwardFlowAnalysis Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package sootup.analysis.intraprocedural;

import sootup.core.graph.BasicBlock;
import sootup.core.graph.StmtGraph;

public abstract class ForwardFlowAnalysis extends FlowAnalysis {

  /** Construct the analysis from StmtGraph. */
  public > ForwardFlowAnalysis(StmtGraph graph) {
    super(graph);
  }

  @Override
  protected boolean isForward() {
    return true;
  }

  @Override
  protected void execute() {
    int i = execute(stmtToBeforeFlow, stmtToAfterFlow);
  }
}