Package avrora.util.profiling

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


            StateCache.State state = (StateCache.State)i.next();
            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();
View Full Code Here


        while (i.hasNext()) {
            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
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.