예제 #1
0
파일: Neuron.cs 프로젝트: Lino3D/MSI2
        public void Connect(int id, Neuron neuron, float weight)
        {
            Connection C = new Connection(id, weight, this, neuron);

            connections.Add(C);
        }
예제 #2
0
파일: Neuron.cs 프로젝트: Lino3D/MSI2
 public void connectOld(Neuron neuron, float weight)
 {
     connectionsOld.Add(neuron);
     weights.Add(weight);
 }