*/
public NeuroController translateGenomeToController(List<BigDecimal> sequence, boolean normalize) {
ActivationFunction func = this.getStandardActFct();
int scale = MatrixBigDecimal.GLOBAL_SCALE;
MatrixBigDecimal.GLOBAL_SCALE = 10;
this.setStandardActFct(new ActivationFunctionSQRT());
// System.out.println();
Random fixedRandom = new Random(this.randomSeedForFixedRandom);
NeuroController controllerNeu = new NeuroController(this.getPars(), maxNumOfNeuronsController + 1);