public Dendrit(Neuron parParentNeuron, Axon outputFromNeuron)
 {
     this.parentNeuron = parParentNeuron;
     this.connection   = outputFromNeuron;
     this.weight       = outputFromNeuron.getWeight();
     this.activated    = false;
 }
        public Dendrit addDendrit(Axon neuronOutput)
        {
            Dendrit newDendrit = new Dendrit(this, neuronOutput);

            return(newDendrit);
        }
        public Neuron()
        {
            this.processingUnit = new Cell(this);

            this.output = new Axon(this);
        }