src/main/java/org/apache/datasketches/characterization/kll/KllDoublesSketchRankGaussianAccuracyProfile.java [47:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static final DefaultMemoryRequestServer memReqSvr = new DefaultMemoryRequestServer();
  private Job job;
  private Properties props;

  //FROM PROPERTIES
  //For computing the different stream lengths
  private int lgMin;
  private int lgMax;
  private int lgDelta;
  private int ppo; //not used for rank accuracy

  private int numTrials; //num of Trials per plotPoint
  private int errorSkLgK; //size of the error quantiles sketches

  //plotting & x-axis configuration
  private int numPlotPoints;

  //Target sketch configuration & error analysis
  private int k;
  private QuantileSearchCriteria criteria;
  private boolean useBulk;
  private boolean direct;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/characterization/kll/KllFloatsSketchRankGaussianAccuracyProfile.java [47:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static final DefaultMemoryRequestServer memReqSvr = new DefaultMemoryRequestServer();
  private Job job;
  private Properties props;

  //FROM PROPERTIES
  //For computing the different stream lengths
  private int lgMin;
  private int lgMax;
  private int lgDelta;
  private int ppo; //not used for rank accuracy

  private int numTrials; //num of Trials per plotPoint
  private int errorSkLgK; //size of the error quantiles sketches

  //plotting & x-axis configuration
  private int numPlotPoints;

  //Target sketch configuration & error analysis
  private int k;
  private QuantileSearchCriteria criteria;
  private boolean useBulk;
  private boolean direct;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



