Package org.jakstab.analysis.substitution

Examples of org.jakstab.analysis.substitution.SubstitutionState


    cpaAlgo.run();
    ReachedSet exprSubstStates = cpaAlgo.getReachedStates().select(1);
   
    for (CFAEdge edge : program.getCFA()) {
      assert exprSubstStates.where(edge.getSource()).size() == 1;
      SubstitutionState s = (SubstitutionState)exprSubstStates.where(edge.getSource()).iterator().next();
      substituteCFAEdge(edge, s);
    }
   
    long endTime = System.currentTimeMillis();
    logger.verbose("Finished after " + (endTime - startTime) + "ms.");
View Full Code Here

TOP

Related Classes of org.jakstab.analysis.substitution.SubstitutionState

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.