pred = dist[0];
updateStatsForPredictor(pred, instance);
if (storePredictions && !m_DiscardPredictions) {
if (m_Predictions == null)
m_Predictions = new FastVector();
m_Predictions.addElement(new NumericPrediction(instance.classValue(), pred,
instance.weight()));
}
}
return pred;