Exemple #1
0
 public float GetWeigth(Neuron toNeuron)
 {
     return(_weights[toNeuron]);
 }
Exemple #2
0
 public void SetWeigth(Neuron toNeuron, float weigth)
 {
     _weights[toNeuron] = weigth;
 }
Exemple #3
0
 public float WeightedCurrenValue(Neuron toNeuron)
 {
     return(_weights[toNeuron] * Value);
 }