Examples of textReport()


Examples of avrora.util.profiling.Distribution.textReport()

            StateCache.Set stateSet = state.info.stateSet;
            int size = stateSet == null ? 0 : stateSet.size();
            sizeDist.record(size);
        }
        sizeDist.processData();
        sizeDist.textReport();
    }

    private void analyzeStates() {
        Iterator i = graph.getStateCache().getStateIterator();
        Distribution pcDist = new Distribution("Distribution of program states over PC", "Number of unique instructions", null, "Distribution");
View Full Code Here

Examples of avrora.util.profiling.Distribution.textReport()

            StateCache.State s = (StateCache.State)i.next();
            pcDist.record(s.getPC());

        }
        pcDist.processData();
        pcDist.textReport();
    }

    /**
     * The <code>MonitorThread</code> class represents a thread instance that constantly monitors the progress
     * of the stack analysis and reports on the number of states explored, edges inserted, states on the
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.