public CPPNNEATNeuronGene(int innovationNumber, double level,
CPPNNeuronType type, CPPNNEATActivationFunction activationFunction)
        {
            this.innovationNumber = innovationNumber;
            this.Level = level;

            this.Type = type;
            this.ActivationFunction = activationFunction;
        }
        public CPPNNEATNeuronGene(int innovationNumber, double level,
                                  CPPNNeuronType type, CPPNNEATActivationFunction activationFunction)
        {
            this.innovationNumber = innovationNumber;
            this.Level            = level;

            this.Type = type;
            this.ActivationFunction = activationFunction;
        }