Ejemplo n.º 1
0
 /// <summary>
 /// Removes all synapsed from the network starting from this layer.
 /// </summary>
 public void RecursiveIsolateLayer()
 {
     IsolateLayer();
     if (_targetLayer != null)
     {
         _targetLayer.RecursiveIsolateLayer();
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Remove all synapses.
 /// </summary>
 public void CompleteDelink()
 {
     _inputLayer.RecursiveIsolateLayer();
 }