fr.iscpif.mgo.algorithm

SMSEMOEA

trait SMSEMOEA extends Evolution with GAGenomeWithSigma with MG with BinaryTournamentSelection with TournamentOnRank with RankModifier with RankOnDiversity with RankElitism with CoEvolvingSigmaValuesMutation with SBXBoundedCrossover with HypervolumeDiversity with NoArchive with GeneticBreeding

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SMSEMOEA
  2. GeneticBreeding
  3. NoArchive
  4. HypervolumeDiversity
  5. ReferencePoint
  6. SBXBoundedCrossover
  7. CrossoverRate
  8. Crossover
  9. CoEvolvingSigmaValuesMutation
  10. MutationRate
  11. Mutation
  12. RankElitism
  13. MergedGenerations
  14. Mu
  15. RankOnDiversity
  16. HierarchicalRanking
  17. DiversityMetric
  18. TournamentOnRank
  19. RankModifier
  20. ModifiedFitness
  21. RankMF
  22. Ranking
  23. BinaryTournamentSelection
  24. Tournament
  25. OneByOne
  26. Selection
  27. MG
  28. GAGenomeWithSigma
  29. GAGenomeWithSigmaType
  30. Sigma
  31. GA
  32. RandomGenome
  33. Evolution
  34. Elitism
  35. Breeding
  36. Archive
  37. Lambda
  38. Modifier
  39. A
  40. IndividualFilter
  41. Termination
  42. MF
  43. F
  44. P
  45. G
  46. AnyRef
  47. 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. case class EvolutionState(population: Population[Evolution.G, Evolution.P, Evolution.F, Evolution.MF], 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
  3. abstract type F

    Definition Classes
    F
  4. type G = Genome

    Definition Classes
    GAGenomeWithSigmaTypeG
  5. type MF = Rank

    the type of the meta-fitness

    the type of the meta-fitness

    Definition Classes
    RankModifierMF
  6. abstract type P

    Definition Classes
    P
  7. 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 fitness: SimpleLens[F, Seq[Double]]

    Definition Classes
    MG
  2. abstract def genomeSize: Int

    Size of the value part of the genome

    Size of the value part of the genome

    Definition Classes
    GA
  3. abstract def initialState: STATE

    Compute the initial state

    Compute the initial state

    returns

    the initial state

    Definition Classes
    Termination
  4. abstract def lambda: Int

    the size of the offspring

    the size of the offspring

    Definition Classes
    Lambda
  5. abstract def mu: Int

    the size of the population

    the size of the population

    Definition Classes
    Mu
  6. abstract def referencePoint: Seq[Double]

    value of the reference point for the hypervolume computation

    value of the reference point for the hypervolume computation

    Definition Classes
    ReferencePoint
  7. abstract def terminated(population: ⇒ Population[G, P, F, MF], terminationState: STATE): (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, individuals: Seq[Individual[G, P, F]]): A

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

    Definition Classes
    Any
  6. def breed(individuals: Seq[Individual[G, P, F]], a: A, size: Int)(implicit rng: Random): Seq[G]

    Breed genomes from a population

    Breed genomes from a population

    individuals

    the population from which genomes are breeded

    size

    the size of the breeded set

    returns

    the breeded genomes

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

    Definition Classes
    Evolution
  8. def clone(): AnyRef

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

    Definition Classes
    GeneticBreeding
  10. def combine(a1: A, a2: A): None.type

    Definition Classes
    NoArchiveArchive
  11. def computeHypervolume(front: IndexedSeq[(Seq[Double], Int)], referencePoint: Seq[Double]): IndexedSeq[(Lazy[Double], Int)]

    Compute the hypervolume contribution for each front

    Compute the hypervolume contribution for each front

    Definition Classes
    HypervolumeDiversity
  12. def crossover(g1: G, g2: G, population: Seq[Individual[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
    SBXBoundedCrossoverCrossover
  13. def crossoverRate: Double

    crossover rate parameter of the algorithm

    crossover rate parameter of the algorithm

    Definition Classes
    CrossoverRate
  14. def diff(original: A, modified: A): None.type

    Definition Classes
    NoArchiveArchive
  15. def distributionIndex: Double

    distribution index parameter of the algorithm

    distribution index parameter of the algorithm

    Definition Classes
    SBXBoundedCrossover
  16. def diversity(values: Seq[Seq[Double]]): 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
    HypervolumeDiversityDiversityMetric
  17. def elitism(individuals: Seq[Individual[G, P, F]], archive: A)(implicit rng: Random): Seq[Individual[G, P, F]]

    Reduce the number of elements of the population and return a new one

    Reduce the number of elements of the population and return a new one

    individuals

    the population to shrink

    returns

    the shrinked population

    Definition Classes
    RankElitismMergedGenerations
  18. def elitism(oldGeneration: Seq[Individual[G, P, F]], newGeneration: Seq[Individual[G, P, F]], archive: A)(implicit aprng: Random): Seq[Individual[G, P, F]]

    Definition Classes
    MergedGenerationsElitism
  19. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  21. 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
  22. def evolve(individuals: Seq[Individual[G, P, F]], a: A, expression: (G, Random) ⇒ P, evaluation: (P, Random) ⇒ F)(implicit aprng: Random): Iterator[EvolutionState]

    Run the evolutionary algorithm

    Run the evolutionary algorithm

    individuals

    the initial individuals

    expression

    the genome expression

    evaluation

    the fitness evaluator

    returns

    an iterator over the states of the evolution

    Definition Classes
    Evolution
  23. def filter(individuals: Seq[Individual[G, P, F]]): Seq[Individual[G, P, F]]

    Filter the individuals

    Filter the individuals

    individuals

    the set of evaluated individuals

    returns

    the filtrated individuals

    Definition Classes
    IndividualFilter
  24. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def fitnesses(evaluated: Seq[Individual[G, P, F]], archive: A): Seq[Seq[Double]]

    Definition Classes
    RankOnDiversityModifiedFitness
  26. def genome: SimpleLens[G, Seq[Double]]

    The entire genome with potentially additional information

    The entire genome with potentially additional information

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

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

    Definition Classes
    AnyRef → Any
  29. def initialArchive: A

    Definition Classes
    NoArchiveArchive
  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. def minimumSigma: Double

  32. def modify(evaluated: Seq[Individual[G, P, F]], archive: A): Population[G, P, F, MF]

    Generate a population from a set of indiviuals

    Generate a population from a set of indiviuals

    returns

    the population with the meta-fitness for each individual

    Definition Classes
    RankModifierModifier
  33. def mutate(genome: G, population: Seq[Individual[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
    CoEvolvingSigmaValuesMutationMutation
  34. def mutationRate: Double

    Definition Classes
    MutationRate
  35. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    GAGenomeWithSigmaGARandomGenome
  39. def rank(values: Seq[Seq[Double]]): 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
    HierarchicalRankingRanking
  40. def rank: Lens[MF, MF, Lazy[Int], Lazy[Int]]

    Definition Classes
    RankModifierRankMF
  41. def sbxCrossover(g1: G, g2: G)(implicit rng: Random): (G, G)

    Definition Classes
    SBXBoundedCrossover
  42. def selectOne(population: Population[G, P, F, MF])(implicit rng: Random): Individual[G, P, F]

    Definition Classes
    BinaryTournamentSelectionOneByOne
  43. def selection(population: Population[G, P, F, MF])(implicit aprng: Random): Iterator[Individual[G, P, F]]

    Select an individual among the population.

    Select an individual among the population.

    population

    the population in which selection occurs

    returns

    the selected individual

    Definition Classes
    OneByOneSelection
  44. def sigma: Lens[G, G, Seq[Double], Seq[Double]]

    Definition Classes
    GAGenomeWithSigmaSigma
  45. def step(individuals: Seq[Individual[G, P, F]], archive: A, expression: (G, Random) ⇒ P, evaluation: (P, Random) ⇒ F)(implicit rng: Random): (Seq[Individual[G, P, F]], A)

    Evolve one step

    Evolve one step

    individuals

    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
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  47. def toArchive(individuals: Seq[Individual[G, P, F]]): A

    Definition Classes
    NoArchiveArchive
  48. def toPopulation(individuals: Seq[Individual[G, P, F]], a: A): Population[G, P, F, MF]

    Generate a population from a set of indiviuals that is filtered in a first time

    Generate a population from a set of indiviuals that is filtered in a first time

    individuals

    a set of individual

    returns

    the filtred population with the meta-fitness for each individual

    Definition Classes
    Modifier
  49. def toString(): String

    Definition Classes
    AnyRef → Any
  50. def tournament(e1: PopulationElement[G, P, F, MF], e2: PopulationElement[G, P, F, MF])(implicit rng: Random): PopulationElement[G, P, F, MF]

    Select the best ranked and if equal the more diverse individual between two population elements.

    Select the best ranked and if equal the more diverse individual between two population elements.

    e1

    the first population element

    e2

    the second population element

    returns

    the winning population element

    Definition Classes
    TournamentOnRankTournament
  51. def values: Lens[G, G, Seq[Double], 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
    GAGenomeWithSigmaGA
  52. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from breed.GeneticBreeding

Inherited from archive.NoArchive

Inherited from metric.ReferencePoint

Inherited from CrossoverRate

Inherited from Crossover

Inherited from MutationRate

Inherited from mutation.Mutation

Inherited from elitism.RankElitism

Inherited from MergedGenerations

Inherited from Mu

Inherited from modifier.RankOnDiversity

Inherited from diversity.DiversityMetric

Inherited from modifier.RankModifier

Inherited from ModifiedFitness

Inherited from modifier.RankMF

Inherited from ranking.Ranking

Inherited from Tournament

Inherited from OneByOne

Inherited from selection.Selection

Inherited from fitness.MG

Inherited from genome.GAGenomeWithSigma

Inherited from GAGenomeWithSigmaType

Inherited from genome.Sigma

Inherited from genome.GA

Inherited from RandomGenome

Inherited from Evolution

Inherited from elitism.Elitism

Inherited from breed.Breeding

Inherited from archive.Archive

Inherited from Lambda

Inherited from modifier.Modifier

Inherited from archive.A

Inherited from modifier.IndividualFilter

Inherited from termination.Termination

Inherited from modifier.MF

Inherited from fitness.F

Inherited from phenotype.P

Inherited from genome.G

Inherited from AnyRef

Inherited from Any

Ungrouped