fr.iscpif.mgo.algorithm

NSGAII

trait NSGAII extends Evolution with GAGenomeWithSigma with BinaryTournamentSelection with TournamentOnRankAndDiversity with NonDominatedElitism with AdaptiveCauchyMutation with SBXCrossover with FitnessCrowdingDiversity with ParetoRanking with NonStrictDominance with NoArchive with CloneRemoval with GeneticBreeding with MGFitness with ClampedGenome

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NSGAII
  2. ClampedGenome
  3. GeneticBreeding
  4. CloneRemoval
  5. NoArchive
  6. NonStrictDominance
  7. ParetoRanking
  8. Dominance
  9. FitnessCrowdingDiversity
  10. MGFitness
  11. MG
  12. SBXCrossover
  13. Crossover
  14. AdaptiveCauchyMutation
  15. MinimumSigma
  16. Mutation
  17. NonDominatedElitism
  18. Mu
  19. TournamentOnRankAndDiversity
  20. Diversity
  21. Ranking
  22. BinaryTournamentSelection
  23. NumberOfRound
  24. Tournament
  25. Selection
  26. GAGenomeWithSigma
  27. Sigma
  28. GA
  29. GenomeClamping
  30. RandomGenome
  31. Evolution
  32. Elitism
  33. IndividualFilter
  34. Breeding
  35. Archive
  36. A
  37. Lambda
  38. Termination
  39. F
  40. P
  41. G
  42. AnyRef
  43. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type A = None.type

    Definition Classes
    NoArchiveArchiveA
  2. type Evaluation = (Lazy[Int], Lazy[Double])

  3. case class EvolutionState(population: Population[Evolution.G, Evolution.P, Evolution.F], archive: Evolution.A, generation: Int, terminationState: Evolution.STATE, terminated: Boolean) extends Product with Serializable

    Represent a state of the evolution algorithm

    Represent a state of the evolution algorithm

    Definition Classes
    Evolution
  4. type F = Seq[Double]

    Definition Classes
    MGFitnessF
  5. type G = Genome

    Definition Classes
    GAGenomeWithSigmaG
  6. type IndividualEvaluation = (Individual[G, P, F], Evaluation)

    Definition Classes
    Tournament
  7. abstract type P

    Definition Classes
    P
  8. abstract type STATE

    Type of the state maintained to study the evolution of the algorithm

    Type of the state maintained to study the evolution of the algorithm

    Definition Classes
    Termination

Abstract Value Members

  1. abstract def genomeSize: Int

    Size of the value part of the genome

    Size of the value part of the genome

    Definition Classes
    GA
  2. abstract def initialState: STATE

    Compute the initial state

    Compute the initial state

    returns

    the initial state

    Definition Classes
    Termination
  3. abstract def lambda: Int

    the size of the offspring

    the size of the offspring

    Definition Classes
    Lambda
  4. abstract def mu: Int

    the size of the population

    the size of the population

    Definition Classes
    Mu
  5. abstract def terminated(population: Population[G, P, F], terminationState: STATE)(implicit rng: Random): (Boolean, STATE)

    Test if the algorithm has converged.

    Test if the algorithm has converged.

    population

    the current population

    terminationState

    the actual termination state

    returns

    a boolean which is equal to true if a terminal state has been detected and the new termination state

    Definition Classes
    Termination

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def archive(a: A, oldIndividuals: Population[G, P, F], offspring: Population[G, P, F])(implicit rng: Random): A

    Definition Classes
    NoArchiveArchive
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def breed(i1: Individual[G, P, F], i2: Individual[G, P, F], population: Population[G, P, F], a: A)(implicit rng: Random): Seq[G]

    Definition Classes
    GeneticBreeding
  7. def breed(population: Population[G, P, F], a: A, size: Int)(implicit rng: Random): Seq[G]

    Breed genomes from a population

    Breed genomes from a population

    population

    the population from which genomes are breeded

    size

    the size of the breeded set

    returns

    the breeded genomes

    Definition Classes
    GeneticBreedingBreeding
  8. def buildRNG(seed: Long): Random

    Definition Classes
    Evolution
  9. def clamp(values: SimpleLens[G, Seq[Double]]): SimpleLens[G, Seq[Double]]

    Definition Classes
    ClampedGenomeGenomeClamping
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def cloneProbability: Double

    Definition Classes
    GeneticBreeding
  12. def computeElitism(oldGeneration: Population[G, P, F], offspring: Population[G, P, F], archive: A)(implicit rng: Random): Population[G, P, F]

    Definition Classes
    NonDominatedElitismElitism
  13. def crossover(g1: G, g2: G, population: Population[G, P, F], archive: A)(implicit rng: Random): Seq[G]

    Crossover g1 and g2

    Crossover g1 and g2

    g1

    a genome

    g2

    another genome

    population

    last computed population

    archive

    last archive

    returns

    the result of the crossover

    Definition Classes
    SBXCrossoverCrossover
  14. def distributionIndex: Double

    distribution index parameter of the algorithm

    distribution index parameter of the algorithm

    Definition Classes
    SBXCrossover
  15. def diversity(values: Population[G, P, F])(implicit rng: Random): Seq[Lazy[Double]]

    Compute the diversity metric of the values

    Compute the diversity metric of the values

    values

    a set of values

    returns

    a diversity sequence in the diversity of the individual i at the position i

    Definition Classes
    FitnessCrowdingDiversityDiversity
  16. def elitism(oldGeneration: Population[G, P, F], offspring: Population[G, P, F], archive: A)(implicit rng: Random): Population[G, P, F]

    Definition Classes
    Elitism
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def evaluate(population: Population[G, P, F], archive: A)(implicit rng: Random): Seq[Evaluation]

  20. def evolve(expression: (G, Random) ⇒ P, evaluation: (P, Random) ⇒ F)(implicit prng: Random): Iterator[EvolutionState]

    Run the evolutionary algorithm

    Run the evolutionary algorithm

    expression

    the genome expression

    evaluation

    the fitness evaluator

    returns

    an iterator over the states of the evolution

    Definition Classes
    Evolution
  21. def evolve(population: Population[G, P, F], a: A, expression: (G, Random) ⇒ P, evaluation: (P, Random) ⇒ F)(implicit rng: Random): Iterator[EvolutionState]

    Run the evolutionary algorithm

    Run the evolutionary algorithm

    population

    the initial individuals

    expression

    the genome expression

    evaluation

    the fitness evaluator

    returns

    an iterator over the states of the evolution

    Definition Classes
    Evolution
  22. def filter(population: Population[G, P, F]): Population[G, P, F]

    Filter the individuals

    Filter the individuals

    population

    the set of evaluated individuals

    returns

    the filtrated individuals

    Definition Classes
    CloneRemovalIndividualFilter
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def fitness(f: F): F

    Definition Classes
    MGFitnessMG
  25. def fitness(individual: Individual[G, P, F]): Seq[Double]

    Definition Classes
    MG
  26. def genomesEqualOn(g: G): Any

    Definition Classes
    GAG
  27. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  28. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  29. def initialArchive(implicit rng: Random): A

    Definition Classes
    NoArchiveArchive
  30. def isDominated(p1: F, p2: F): Boolean

    Definition Classes
    NonStrictDominanceDominance
  31. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  32. def minimumSigma: Double

    Definition Classes
    MinimumSigma
  33. def mutate(genome: G, population: Population[G, P, F], archive: A)(implicit rng: Random): G

    Mutate a genome

    Mutate a genome

    genome

    genome to mutate

    population

    the last computed population

    archive

    the last archive

    rng

    a random number geneartor

    returns

    the mutated genome

    Definition Classes
    AdaptiveCauchyMutationMutation
  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def randomGenome(implicit rng: Random): Genome

    Definition Classes
    GAGenomeWithSigmaGARandomGenome
  38. def rank(values: Population[G, P, F]): Seq[Lazy[Int]]

    Compute the rank of a set of individuals.

    Compute the rank of a set of individuals.

    values

    the values to rank

    returns

    the ranks of the individuals in the same order

    Definition Classes
    ParetoRankingRanking
  39. def rawValues: SimpleLens[G, Seq[Double]]

    Definition Classes
    GAGenomeWithSigmaGA
  40. def rounds(population: Population[G, P, F], archive: A): Int

  41. def sbxCrossover(g1: G, g2: G)(implicit rng: Random): Seq[G]

    Definition Classes
    SBXCrossover
  42. def selection(population: Population[G, P, F], archive: A)(implicit rng: Random): Iterator[Individual[G, P, F]]

    Select an individual among the population.

    Select an individual among the population.

    param population the population in which selection occurs

    returns

    the selected individual

    Definition Classes
    BinaryTournamentSelectionSelection
  43. def sigma: SimpleLens[G, Seq[Double]]

    Definition Classes
    GAGenomeWithSigmaSigma
  44. def step(population: Population[G, P, F], archive: A, expression: (G, Random) ⇒ P, evaluation: (P, Random) ⇒ F)(implicit rng: Random): (Population[G, P, F], A)

    Evolve one step

    Evolve one step

    population

    the current population

    archive

    the current archive

    expression

    expression of the genome

    evaluation

    the fitness evaluator

    returns

    a new population of evaluated solutions

    Definition Classes
    Evolution
  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  46. def toString(): String

    Definition Classes
    AnyRef → Any
  47. def tournament(e1: IndividualEvaluation, e2: IndividualEvaluation)(implicit rng: Random): IndividualEvaluation

  48. def values: SimpleLens[G, Seq[Double]]

    The value part of the genome actually used for the optimisation

    The value part of the genome actually used for the optimisation

    Definition Classes
    GA
  49. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from genome.ClampedGenome

Inherited from breed.GeneticBreeding

Inherited from elitism.CloneRemoval

Inherited from archive.NoArchive

Inherited from ranking.ParetoRanking

Inherited from dominance.Dominance

Inherited from fitness.MGFitness

Inherited from fitness.MG

Inherited from crossover.SBXCrossover

Inherited from crossover.Crossover

Inherited from MinimumSigma

Inherited from mutation.Mutation

Inherited from Mu

Inherited from diversity.Diversity

Inherited from ranking.Ranking

Inherited from NumberOfRound

Inherited from Tournament

Inherited from selection.Selection

Inherited from genome.GAGenomeWithSigma

Inherited from genome.Sigma

Inherited from genome.GA

Inherited from GenomeClamping

Inherited from RandomGenome

Inherited from Evolution

Inherited from elitism.Elitism

Inherited from elitism.IndividualFilter

Inherited from breed.Breeding

Inherited from archive.Archive

Inherited from archive.A

Inherited from Lambda

Inherited from termination.Termination

Inherited from fitness.F

Inherited from phenotype.P

Inherited from genome.G

Inherited from AnyRef

Inherited from Any

Ungrouped