src/main/java/org/apache/datasketches/characterization/kll/KllDoublesSketchRankGaussianAccuracyProfile.java [108:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private void extractProperties() {
    //stream length
    lgMin = Integer.parseInt(props.mustGet("LgMin"));
    lgMax = Integer.parseInt(props.mustGet("LgMax"));
    lgDelta = Integer.parseInt(props.mustGet("LgDelta"));
    ppo = Integer.parseInt(props.mustGet("PPO"));
    //numTrials & error quantiles sketch config
    numTrials = 1 << Integer.parseInt(props.mustGet("LgTrials"));
    errorSkLgK = Integer.parseInt(props.mustGet("ErrSkLgK"));
    //plotting & x-axis config
    numPlotPoints = Integer.parseInt(props.mustGet("NumPlotPoints"));
    //Target sketch config
    k = Integer.parseInt(props.mustGet("K"));
    criteria = props.mustGet("criteria").equalsIgnoreCase("INCLUSIVE") ? INCLUSIVE : EXCLUSIVE;
    useBulk = Boolean.parseBoolean(props.mustGet("useBulk"));
    direct = Boolean.parseBoolean(props.mustGet("direct"));
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/characterization/kll/KllFloatsSketchRankGaussianAccuracyProfile.java [108:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private void extractProperties() {
    //stream length
    lgMin = Integer.parseInt(props.mustGet("LgMin"));
    lgMax = Integer.parseInt(props.mustGet("LgMax"));
    lgDelta = Integer.parseInt(props.mustGet("LgDelta"));
    ppo = Integer.parseInt(props.mustGet("PPO"));
    //numTrials & error quantiles sketch config
    numTrials = 1 << Integer.parseInt(props.mustGet("LgTrials"));
    errorSkLgK = Integer.parseInt(props.mustGet("ErrSkLgK"));
    //plotting & x-axis config
    numPlotPoints = Integer.parseInt(props.mustGet("NumPlotPoints"));
    //Target sketch config
    k = Integer.parseInt(props.mustGet("K"));
    criteria = props.mustGet("criteria").equalsIgnoreCase("INCLUSIVE") ? INCLUSIVE : EXCLUSIVE;
    useBulk = Boolean.parseBoolean(props.mustGet("useBulk"));
    direct = Boolean.parseBoolean(props.mustGet("direct"));
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



