Esempio n. 1
0
        public void Connect(int id, Neuron neuron, float weight)
        {
            Connection C = new Connection(id, weight, this, neuron);

            connections.Add(C);
        }
Esempio n. 2
0
 public void connectOld(Neuron neuron, float weight)
 {
     connectionsOld.Add(neuron);
     weights.Add(weight);
 }