src/main/java/org/apache/datasketches/characterization/kll/KllSketchSizeSpeedProfile.java [58:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private boolean direct = false;

  //DERIVED & GLOBALS
  private KllDoublesSketch dsk = null;
  private KllFloatsSketch fsk = null;

  private final String[] columnLabels = {"PlotPoint", "StrLen", "Trials", "Bytes", "nS/u" };
  private final String sFmt =  "%9s\t%6s\t%6s\t%5s\t%4s\n";
  private final String dFmt =  "%,9d\t %,12d\t %,12d\t %,12d\t %,12.6f\n";

  private void extractProperties() {
    //trials config
    lgMinT = Integer.parseInt(prop.mustGet("LgMinT"));
    lgMaxT = Integer.parseInt(prop.mustGet("LgMaxT"));
    lgMinBpSL = Integer.parseInt(prop.mustGet("LgMinBpSL"));
    lgMaxBpSL = Integer.parseInt(prop.mustGet("LgMaxBpSL"));
    //stream length
    lgMinSL = Integer.parseInt(prop.mustGet("LgMinSL"));
    lgMaxSL = Integer.parseInt(prop.mustGet("LgMaxSL"));
    ppoSL = Integer.parseInt(prop.mustGet("PpoSL"));

    //Target sketch config
    k = Integer.parseInt(prop.mustGet("KllK"));
    type = prop.mustGet("type");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/characterization/kll/KllSketchVectorSizeSpeedProfile.java [56:79]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private boolean direct = false;

  //DERIVED & GLOBALS
  private KllDoublesSketch dsk = null;
  private KllFloatsSketch fsk = null;

  private final String[] columnLabels = {"PlotPoint", "StrLen", "Trials", "Bytes", "nS/u" };
  private final String sFmt =  "%9s\t%6s\t%6s\t%5s\t%4s\n";
  private final String dFmt =  "%,9d\t %,12d\t %,12d\t %,12d\t %,12.6f\n";

  private void extractProperties() {
    //trials config
    lgMinT = Integer.parseInt(prop.mustGet("LgMinT"));
    lgMaxT = Integer.parseInt(prop.mustGet("LgMaxT"));
    lgMinBpSL = Integer.parseInt(prop.mustGet("LgMinBpSL"));
    lgMaxBpSL = Integer.parseInt(prop.mustGet("LgMaxBpSL"));
    //stream length
    lgMinSL = Integer.parseInt(prop.mustGet("LgMinSL"));
    lgMaxSL = Integer.parseInt(prop.mustGet("LgMaxSL"));
    ppoSL = Integer.parseInt(prop.mustGet("PpoSL"));

    //Target sketch config
    k = Integer.parseInt(prop.mustGet("KllK"));
    type = prop.mustGet("type");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



