this.genomeLength = other.genomeLength;
this.justACounter = other.justACounter;
this.maxNumOfNeuronsController = other.maxNumOfNeuronsController;
this.maxNumOfNeuronsTranslator = other.maxNumOfNeuronsTranslator;
if (other.neuronInitialVectorForTranslation != null) {
this.neuronInitialVectorForTranslation = new MatrixBigDecimal(other.neuronInitialVectorForTranslation);
}
this.neuronVector = new MatrixBigDecimal(other.neuronVector);
this.randomSeedForFixedRandom = other.randomSeedForFixedRandom;
this.translatedTranslatorSequence = new LinkedList<BigDecimal>(other.translatedTranslatorSequence);
}