Examples of cs_demand()


Examples of soot.options.SparkOptions.cs_demand()

        Scene.v().setPointsToAnalysis( pag );
        if( opts.add_tags() ) {
            addTags( pag );
        }

        if(opts.cs_demand()) {
            //replace by demand-driven refinement-based context-sensitive analysis
            Date startOnDemand = new Date();
            PointsToAnalysis onDemandAnalysis = DemandCSPointsTo.makeWithBudget(opts.traversal(), opts.passes(), opts.lazy_pts());
            Date endOndemand = new Date();
            reportTime( "Initialized on-demand refinement-based context-sensitive analysis", startOnDemand, endOndemand );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.