protected Long seed = null;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
final IntParameter pK = new IntParameter(LOF.K_ID, new GreaterConstraint(1));
if(config.grab(pK)) {
k = pK.getValue();
}
IntParameter NUM_PARAM = new IntParameter(NUM_ID, new GreaterEqualConstraint(1));
if(config.grab(NUM_PARAM)) {
num = NUM_PARAM.getValue();
}
Flag BREADTH_FLAG = new Flag(BREADTH_ID);
if(config.grab(BREADTH_FLAG)) {
breadth = BREADTH_FLAG.getValue();
}