Package org.encog.neural.neat.training

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

Related Classes of org.encog.neural.neat.training.NEATLinkGene

Copyright © 2018 www.massapicom. 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.