public float GetWeigth(Neuron toNeuron) { return(_weights[toNeuron]); }
public void SetWeigth(Neuron toNeuron, float weigth) { _weights[toNeuron] = weigth; }
public float WeightedCurrenValue(Neuron toNeuron) { return(_weights[toNeuron] * Value); }