Uses of Interface
jenes.chromosome.AlleleSet

Packages that use AlleleSet
jenes.chromosome   
jenes.tutorials.problem5   
 

Uses of AlleleSet in jenes.chromosome
 

Classes in jenes.chromosome that implement AlleleSet
 class GenericAlleleSet<T>
          A GenericAlleleSet represents a concrete allele set implementation.
 

Fields in jenes.chromosome declared as AlleleSet
protected  AlleleSet ObjectChromosome.Gene.alleleSet
          The set of possible values for the gene
 

Methods in jenes.chromosome that return AlleleSet
 AlleleSet ObjectChromosome.Gene.getAlleleSet()
          Returns the alleleSet of this gene.
 

Methods in jenes.chromosome with parameters of type AlleleSet
 void ObjectChromosome.Gene.setAlleleSet(AlleleSet alleleSet)
          Sets the alleleSet of this Gene
 

Constructors in jenes.chromosome with parameters of type AlleleSet
ObjectChromosome(AlleleSet... sets)
          Creates a new ObjectChromosome with one gene for each AlleleSet within the specified array.
ObjectChromosome(AlleleSet set, int size)
          Creates a new ObjectChromosome with the specified length and with the same AlleleSet for each Gene.
 

Constructor parameters in jenes.chromosome with type arguments of type AlleleSet
ObjectChromosome(java.util.List<AlleleSet> list)
          Creates a new ObjectChromosome with one gene for each AlleleSet within the specified list.
 

Uses of AlleleSet in jenes.tutorials.problem5
 

Classes in jenes.tutorials.problem5 that implement AlleleSet
 class DoubleAlleleSet
           
 class IntegerAlleleSet