}
DblMatrix[] XDATA = new DblMatrix[]{SmoothingpH};
DblMatrix YDATA = SmoothingCbResidual;
SmoothingSmoother.setData(XDATA,YDATA);
NNBandwidth BW = (NNBandwidth)SmoothingSmoother.getBandwidthMethod();
FixedSmoothMethod SM = (FixedSmoothMethod)BW.getSmoothMethod();
DblMatrix SP = smoothingParameter.divideBy(smoothingParameter.plus(1.0));
SM.setSmoothParameter(SP);
BW.setSmoothMethod(SM);
}
else if (((Integer)this.adjustForMap.get("adjustForSmoothingMethod")).intValue() == DefaultComplexBufferPredictorGenerator.POLYNOMIAL_SMOOTHING)
{
SmoothingpH = (DblMatrix)this.smoothingpHMap.get(mapkey1);
}