protected Double pEpsilon = 0.0;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
final DoubleParameter pDeltaP = new DoubleParameter(PDELTA_ID, new IntervalConstraint(0, IntervalBoundary.CLOSE, 1, IntervalBoundary.CLOSE), 0.1);
if(config.grab(pDeltaP)) {
pDelta = pDeltaP.getValue();
}
final DoubleParameter pEpsilonP = new DoubleParameter(PEPSILON_ID, new IntervalConstraint(0, IntervalBoundary.CLOSE, 1, IntervalBoundary.CLOSE), 0.05);
if(config.grab(pEpsilonP)) {
pEpsilon = pEpsilonP.getValue();
}
}