Better name for display.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1169860 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-09-12 18:34:20 +00:00
parent d312add3bf
commit a4b4eabe97
1 changed files with 6 additions and 5 deletions

View File

@ -87,10 +87,11 @@ public class PerfTestUtils {
* the average time (in milliseconds) taken by a single call to the
* {@code call} method (i.e. the time taken by each timed block divided
* by {@code repeatChunk})
* </li>
* <li>
* the result returned by the {@code call} method.
* </li>
* </li>
* <li>
* the result returned by the {@code call} method.
* </li>
* </ul>
*/
public static double[][][] timesAndResults(int repeatChunk,
int repeatStat,
@ -162,7 +163,7 @@ public class PerfTestUtils {
boolean runGC,
RunTest ... methods) {
// Header format.
final String hFormat = "%s (runs per timed block: %d, timed blocks: %d)";
final String hFormat = "%s (calls per timed block: %d, timed blocks: %d)";
// Result format.
final String format = "%15s: %e (%e) ms";