Uses of Class
org.jgap.InvalidConfigurationException

Packages that use InvalidConfigurationException
com.anji.neat com.anji.neat contains classes implementing NEAT framework, including genes, mutation operators, and fitness function used for XOR. 
org.jgap   
 

Uses of InvalidConfigurationException in com.anji.neat
 

Methods in com.anji.neat that throw InvalidConfigurationException
 void NeatConfiguration.load()
          Load from persistence.
 void NeatConfiguration.store()
          Store to persistence.
 

Constructors in com.anji.neat that throw InvalidConfigurationException
NeatConfiguration(Properties newProps)
          See Parameter Details for specific property settings.
 

Uses of InvalidConfigurationException in org.jgap
 

Methods in org.jgap that throw InvalidConfigurationException
 void ReproductionOperator.reproduce(Configuration config, java.util.List parentSpecies, java.util.List offspring)
          The reproduce method will be invoked on each of the reproduction operators referenced by the current Configuration object during the evolution phase.
protected abstract  void ReproductionOperator.reproduce(Configuration config, java.util.List parents, int numOffspring, java.util.List offspring)
           
protected abstract  void MutationOperator.mutate(Configuration config, ChromosomeMaterial target, java.util.Set allelesToAdd, java.util.Set allelesToRemove)
          Leaves material unmodified, but updates allelesToAdd and allelesToRemove with modifications.
 void MutationOperator.mutate(Configuration config, java.util.List offspring)
          The operate method will be invoked on each of the mutation operators referenced by the current Configuration object during the evolution phase.
static Genotype Genotype.randomInitialGenotype(Configuration a_activeConfiguration)
          Convenience method that returns a newly constructed Genotype instance configured according to the given Configuration instance.
 void Configuration.setNaturalSelector(NaturalSelector selector)
          set selector
 void Configuration.addReproductionOperator(ReproductionOperator a_operatorToAdd)
          Add a reproduction operator for use in this algorithm.
 void Configuration.addMutationOperator(MutationOperator a_operatorToAdd)
          Add a mutation operator for use in this algorithm.
 void Configuration.setFitnessFunction(FitnessFunction a_functionToSet)
          Sets the fitness function to be used for this genetic algorithm.
 void Configuration.setBulkFitnessFunction(BulkFitnessFunction a_functionToSet)
          Sets the bulk fitness function to be used for this genetic algorithm.
 void Configuration.setSampleChromosomeMaterial(ChromosomeMaterial a_sampleChromosomeMaterial)
          Sets sample ChromosomeMaterial that is to be used as a guide for the construction of other Chromosomes.
 void Configuration.setRandomGenerator(java.util.Random a_generatorToSet)
          Sets the random generator to be used for this genetic algorithm.
 void Configuration.setPopulationSize(int a_sizeOfPopulation)
          Sets the population size to be used for this genetic algorithm.
 void Configuration.setEventManager(EventManager a_eventManagerToSet)
          Sets the EventManager that is to be associated with this configuration.
 void Configuration.lockSettings()
          Locks all of the settings in this configuration object.
 void Configuration.verifyStateIsValid()
          Tests the state of this Configuration object to make sure it's valid.
protected  void Configuration.verifyChangesAllowed()
          Makes sure that this Configuration object isn't locked.
static ChromosomeMaterial ChromosomeMaterial.randomInitialChromosomeMaterial(Configuration a_activeConfiguration)
          Convenience method that returns a new Chromosome instance with its genes values (alleles) randomized.
 

Constructors in org.jgap that throw InvalidConfigurationException
Genotype(Configuration a_activeConfiguration, java.util.List a_initialChromosomes)
          This constructor is used for random initial Genotypes.