Exemple #1
0
 /** @return True if this layer is connected to intself. */
 public boolean isSelfConnected() {
   for (final Synapse synapse : this.next) {
     if (synapse.isSelfConnected()) {
       return true;
     }
   }
   return false;
 }