Example #1
0
 public Trigger(Dendron Dendron)
 {
     this.inputNeuron = Dendron.Input;
     this.outputNeuron = Dendron.Output;
     this.biase = Dendron.Factor;
     this.inputValue = Dendron.Input.Signal;
 }
Example #2
0
 public virtual void AddOutputDendron(Dendron Dendron)
 {
     this.outputs.Add(Dendron);
 }
Example #3
0
 public virtual void AddInputDendron(Dendron Dendron)
 {
     this.inputs.Add(Dendron);
 }
Example #4
0
 protected Trigger prepareTrigger(Dendron Dendron)
 {
     return new Trigger(Dendron);
 }
Example #5
0
 public virtual void RemoveOutputDendron(Dendron Dendron)
 {
     this.outputs.Remove(Dendron);
 }
Example #6
0
 public virtual void RemoveInputDendron(Dendron Dendron)
 {
     this.inputs.Remove(Dendron);
 }
Example #7
0
 public override void RemoveOutputDendron(Dendron Dendron)
 {
 }
Example #8
0
 public override void AddOutputDendron(Dendron Dendron)
 {
 }