ProjectEGFile file = (ProjectEGFile) dialog.getComboNetwork()
.getSelectedValue();
performCPN(file, trainingData);
} else if (method instanceof BasicNetwork || method instanceof RBFNetwork ) {
ChooseBasicNetworkTrainingMethod choose = new ChooseBasicNetworkTrainingMethod(
EncogWorkBench.getInstance().getMainWindow(),method);
if (choose.process()) {
ProjectEGFile file = (ProjectEGFile) dialog
.getComboNetwork().getSelectedValue();
switch (choose.getType()) {
case SCG:
performSCG(file, trainingData);
break;
case PropagationResilient:
performRPROP(file, trainingData);