コード例 #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);
 }