fr.iscpif.mgo.algorithm

Profile

trait Profile extends Evolution with MG with NoArchive with GAGenomeWithSigma with MaxAggregation with SBXBoundedCrossover with ProfileElitism with CoEvolvingSigmaValuesMutation with BinaryTournamentSelection with TournamentOnRank with HierarchicalRanking with StrictDominance with GeneticBreeding with ProfileModifier

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Profile
  2. ProfileModifier
  3. GeneticBreeding
  4. StrictDominance
  5. Dominance
  6. HierarchicalRanking
  7. TournamentOnRank
  8. RankModifier
  9. ModifiedFitness
  10. RankMF
  11. Ranking
  12. BinaryTournamentSelection
  13. Tournament
  14. OneByOne
  15. Selection
  16. CoEvolvingSigmaValuesMutation
  17. MutationRate
  18. Mutation
  19. ProfileElitism
  20. MergedGenerations
  21. ProfilePlotter
  22. SBXBoundedCrossover
  23. CrossoverRate
  24. Crossover
  25. MaxAggregation
  26. Aggregation
  27. GAGenomeWithSigma
  28. GAGenomeWithSigmaType
  29. Sigma
  30. GA
  31. RandomGenome
  32. NoArchive
  33. MG
  34. Evolution
  35. Elitism
  36. Breeding
  37. Archive
  38. Lambda
  39. Modifier
  40. A
  41. IndividualFilter
  42. Termination
  43. MF
  44. F
  45. P
  46. G
  47. AnyRef
  48. 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: Lens[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 plot(individual: Individual[G, P, F]): Int

    Definition Classes
    ProfilePlotter
  6. 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 aggregate(f: F): Double

    Definition Classes
    MaxAggregationAggregation
  5. def archive(a: A, individuals: Seq[Individual[G, P, F]]): A

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

    Definition Classes
    Any
  7. 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
  8. def buildRNG(seed: Long): Random

    Definition Classes
    Evolution
  9. def clone(): AnyRef

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

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

    Definition Classes
    NoArchiveArchive
  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 elitism(individuals: Seq[Individual[G, P, F]], archive: A)(implicit aprng: 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
    ProfileElitismMergedGenerations
  17. 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
  18. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  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(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
  22. 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
  23. def finalize(): Unit

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

    Definition Classes
    ModifiedFitness
  25. def genome: Lens[G, Seq[Double]]

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

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

    Definition Classes
    AnyRef → Any
  28. def initialArchive: A

    Definition Classes
    NoArchiveArchive
  29. def isDominated(p1: Seq[Double], p2: Seq[Double]): Boolean

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

    Definition Classes
    Any
  31. def minimumSigma: Double

  32. def modify(individuals: 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

    individuals

    a set of individual

    returns

    the population with the meta-fitness for each individual

    Definition Classes
    ProfileModifierRankModifierModifier
  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, 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, 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, Seq[Double]]

    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 modifier.ProfileModifier

Inherited from breed.GeneticBreeding

Inherited from dominance.StrictDominance

Inherited from dominance.Dominance

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 MutationRate

Inherited from mutation.Mutation

Inherited from elitism.ProfileElitism

Inherited from MergedGenerations

Inherited from map.ProfilePlotter

Inherited from CrossoverRate

Inherited from Crossover

Inherited from fitness.MaxAggregation

Inherited from fitness.Aggregation

Inherited from genome.GAGenomeWithSigma

Inherited from GAGenomeWithSigmaType

Inherited from genome.Sigma

Inherited from genome.GA

Inherited from RandomGenome

Inherited from archive.NoArchive

Inherited from fitness.MG

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