protected boolean log;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
IntParameter K_PARAM = new IntParameter(K_ID, new GreaterConstraint(0));
if(config.grab(K_PARAM)) {
k_max = K_PARAM.getValue();
}
IntParameter P_PARAM = new IntParameter(P_ID, new GreaterConstraint(0));
if(config.grab(P_PARAM)) {
p = P_PARAM.getValue();
}
Flag NOLOG_FLAG = new Flag(NOLOG_ID);