Package avrora.util.profiling

Examples of avrora.util.profiling.MinMaxMean


            meanLatency = new MinMaxMean[numInts];
            meanWake = new MinMaxMean[numInts];
            Arrays.fill(lastInvoke, -1);
            Arrays.fill(lastPost, -1);
            for ( int cntr = 0; cntr < numInts; cntr++ ) {
                meanInvoke[cntr] = new MinMaxMean("Inter-arrival time");
                meanLatency[cntr] = new MinMaxMean("Latency");
                meanWake[cntr] = new MinMaxMean("Wakeup time");
            }
            show = SHOW.get();
            invokeOnly = INV_ONLY.get();
        }
View Full Code Here

TOP

Related Classes of avrora.util.profiling.MinMaxMean

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.