}
public OldNeuroTranslator(ParCollection params) {
super(params);
this.setStandardActFct(new ActivationFunctionLug());
super.addNeuron(BIAS_NEURON_ID, new ActivationFunctionConstant(1), new TransitionFunctionWeightedSum(), Neuron.HIDDEN_NEURON);
super.addNeuron(INPUT_NEURON_ID, new ActivationFunctionIdentity(), new TransitionFunctionWeightedSum(), Neuron.INPUT_NEURON);
super.addNeuron(OUTPUT_NEURON_ID, new ActivationFunctionIdentity(), new TransitionFunctionWeightedSum(), Neuron.OUTPUT_NEURON);
this.setAllowLinksFromOutputs(true);
this.setAllowLinksToInputs(false);
this.setAllowRecurrentLinks(true);
this.addLink(INPUT_NEURON_ID, OUTPUT_NEURON_ID, 1);
}