Examples of NEATLinkGene


Examples of org.encog.neural.neat.training.NEATLinkGene

      }
    }

    // Now check to see if the neuron is used in any links
    for (final NEATLinkGene gene : target.getLinksChromosome()) {
      final NEATLinkGene linkGene = gene;
      if (linkGene.getFromNeuronID() == neuronID) {
        return true;
      }
      if (linkGene.getToNeuronID() == neuronID) {
        return true;
      }
    }

    return false;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.