コード例 #1
0
 public Neuron(Guid id, int networkLevel, ActivationFunction af, int networkWidth)
 {
     ID = id;
     ActivationFunction = af;
     InputWeights       = new Dictionary <string, double>(networkWidth);
     InputValues        = new Dictionary <string, DoublePointerAnalog>(networkWidth);
     NetworkLevel       = networkLevel;
     OutputPointer      = new DoublePointerAnalog(0);
 }
コード例 #2
0
 public OutputBuffer()
 {
     Hit  = new DoublePointerAnalog(0);
     Stay = new DoublePointerAnalog(0);
 }
コード例 #3
0
 public InputBuffer()
 {
     DealerValueShowing  = new DoublePointerAnalog(0);
     PlayerPointsShowing = new DoublePointerAnalog(0);
     Softness            = new DoublePointerAnalog(0);
 }