private static String p(final LongMomentStatistics statistics) {
   final NumberFormat nf = NumberFormat.getIntegerInstance();
   return format(
       "max=%s; mean=%6.6f; var=%6.6f",
       nf.format(statistics.getMax()), statistics.getMean(), statistics.getVariance());
 }