src/main/java/org/apache/datasketches/characterization/filters/BaseFilterUpdateSpeedProfile.java [46:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void start(final Job job) {
        this.job = job;
        prop = job.getProperties();
        lgMinT = Integer.parseInt(prop.mustGet("Trials_lgMinT"));
        lgMaxT = Integer.parseInt(prop.mustGet("Trials_lgMaxT"));
        lgMinU = Integer.parseInt(prop.mustGet("Trials_lgMinU"));
        lgMaxU = Integer.parseInt(prop.mustGet("Trials_lgMaxU"));
        uPPO = Integer.parseInt(prop.mustGet("Trials_UPPO"));
        lgMinBpU = Integer.parseInt(prop.mustGet("Trials_lgMinBpU"));
        lgMaxBpU = Integer.parseInt(prop.mustGet("Trials_lgMaxBpU"));
        final String nSk = prop.get("NumSketches");
        numSketches = (nSk != null) ? Integer.parseInt(nSk) : 1;
        slope = (double) (lgMaxT - lgMinT) / (lgMinBpU - lgMaxBpU);
        configure();
        doTrials();
        shutdown();
        cleanup();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/characterization/uniquecount/BaseUpdateSpeedProfile.java [49:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void start(final Job job) {
    this.job = job;
    prop = job.getProperties();
    lgMinT = Integer.parseInt(prop.mustGet("Trials_lgMinT"));
    lgMaxT = Integer.parseInt(prop.mustGet("Trials_lgMaxT"));
    lgMinU = Integer.parseInt(prop.mustGet("Trials_lgMinU"));
    lgMaxU = Integer.parseInt(prop.mustGet("Trials_lgMaxU"));
    uPPO = Integer.parseInt(prop.mustGet("Trials_UPPO"));
    lgMinBpU = Integer.parseInt(prop.mustGet("Trials_lgMinBpU"));
    lgMaxBpU = Integer.parseInt(prop.mustGet("Trials_lgMaxBpU"));
    final String nSk = prop.get("NumSketches");
    numSketches = (nSk != null) ? Integer.parseInt(nSk) : 1;
    slope = (double) (lgMaxT - lgMinT) / (lgMinBpU - lgMaxBpU);
    configure();
    doTrials();
    shutdown();
    cleanup();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



