Package fr.imag.adele.apam.pax.test.performance.util

Examples of fr.imag.adele.apam.pax.test.performance.util.Checkpoint


     
      fibonacci.callsInit(0);
     
      for (int i = 0; i <= SIZE; i++) {
       
        Checkpoint p1 = new Checkpoint();

        int value = fibonacci.compute(i);

        Checkpoint p2 = new Checkpoint();

        MeasureHolder holder = Measure.time(p1, p2);

        System.err.println(String.format("%d\t%d\t%s\t%s\t%d", i,
            value, holder.usedMemory(), holder.asMili(),
View Full Code Here

TOP

Related Classes of fr.imag.adele.apam.pax.test.performance.util.Checkpoint

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.