コード例 #1
0
ファイル: NNNeuron.cs プロジェクト: MehmetKeskin/-dev2-
 public NNNeuron(string str, int icount)
 {
     label         = str;
     output        = 0.0;
     m_Connections = new NNConnectionList(icount);
     Initialize();
 }
コード例 #2
0
ファイル: NNNeuron.cs プロジェクト: MehmetKeskin/-dev2-
 public NNNeuron()
 {
     Initialize();
     label         = "";
     output        = 0.0;
     m_Connections = new NNConnectionList();
 }