コード例 #1
0
ファイル: Neuron.cs プロジェクト: Lxrd-AJ/machine-learning
 public void AddOutboundConnection(Connection connection)
 {
     outboundConnections.Add(connection);
 }
コード例 #2
0
ファイル: Neuron.cs プロジェクト: Lxrd-AJ/machine-learning
 public void AddInboundConnection(Connection connection)
 {
     inboundConnections.Add(connection);
 }