示例#1
0
 /// <summary>
 /// Build the neurons of the map
 /// </summary>
 protected void buildNeurons()
 {
     //Build the neurons
     for (int y = 0; y < height; y++)
     {
         for (int x = 0; x < width; x++)
         {
             neurons[x, y]       = new NeuronIzhikevich();
             neurons[x, y].tag_x = x;
             neurons[x, y].tag_y = y;
         }
     }
 }
示例#2
0
 public Connection(NeuronIzhikevich target, double transmitionDelay, double w)
 {
     this.target = target;
     this.w      = w;
 }