// if (!online) {
// //reset();
// }
switch (getTrainAlgorithm()) {
case BACKPROP:
BackpropAlgorithm algo =
new BackpropAlgorithm(trainingVector,
trainingVector, this, expectedError);
errorValue = new ErrorValue(algo.compute());
break;
case QPROP:
break;
case RPROP:
break;