fr.iscpif.mgo.algorithm

Map

trait Map extends Evolution with MG with NoArchive with MapSelection with GAGenomeWithSigma with MaxAggregation with SBXBoundedCrossover with BestAggregatedNicheElitism with MapNiche with CoEvolvingSigmaValuesMutation with HierarchicalRanking with StrictDominance with GeneticBreeding with NoModifier

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Map
  2. NoModifier
  3. GeneticBreeding
  4. StrictDominance
  5. Dominance
  6. HierarchicalRanking
  7. Ranking
  8. CoEvolvingSigmaValuesMutation
  9. MutationRate
  10. Mutation
  11. MapNiche
  12. BestAggregatedNicheElitism
  13. NicheElitism
  14. Niche
  15. MergedGenerations
  16. SBXBoundedCrossover
  17. CrossoverRate
  18. Crossover
  19. MaxAggregation
  20. GAGenomeWithSigma
  21. GAGenomeWithSigmaType
  22. Sigma
  23. GA
  24. RandomGenome
  25. MapSelection
  26. Aggregation
  27. MapPlotter
  28. Selection
  29. NoArchive
  30. MG
  31. Evolution
  32. Elitism
  33. Breeding
  34. Archive
  35. Lambda
  36. Modifier
  37. A
  38. IndividualFilter
  39. Termination
  40. MF
  41. F
  42. P
  43. G
  44. AnyRef
  45. 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 = None.type

    the type of the meta-fitness

    the type of the meta-fitness

    Definition Classes
    NoModifierMF
  6. type NICHE = (Int, Int)

    Definition Classes
    MapNicheNiche
  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 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 plot(individual: Individual[G, P, F]): (Int, Int)

    Definition Classes
    MapPlotter
  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]], a: 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
    NicheElitismMergedGenerations
  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 genome: SimpleLens[G, Seq[Double]]

    The entire genome with potentially additional information

    The entire genome with potentially additional information

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

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

    Definition Classes
    AnyRef → Any
  27. def initialArchive: A

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

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

    Definition Classes
    Any
  30. def keep(individuals: Seq[Individual[G, P, F]])(implicit rng: Random): Seq[Individual[G, P, F]]

  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
    NoModifierModifier
  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. def neighbourPressure: Int

    Definition Classes
    MapSelection
  37. def niche(individual: Individual[G, P, F]): (Int, Int)

    Definition Classes
    MapNicheNiche
  38. def nicheSize: Int

    Definition Classes
    MapNiche
  39. final def notify(): Unit

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

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

    Definition Classes
    GAGenomeWithSigmaGARandomGenome
  42. 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
  43. def sbxCrossover(g1: G, g2: G)(implicit rng: Random): (G, G)

    Definition Classes
    SBXBoundedCrossover
  44. def selection(population: Population[G, P, F, MF])(implicit rng: 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
    MapSelectionSelection
  45. def sigma: Lens[G, G, Seq[Double], Seq[Double]]

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

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

    Definition Classes
    NoArchiveArchive
  49. 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
  50. def toString(): String

    Definition Classes
    AnyRef → Any
  51. def tournamentSize: Int

    Definition Classes
    MapSelection
  52. 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
  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from modifier.NoModifier

Inherited from breed.GeneticBreeding

Inherited from dominance.StrictDominance

Inherited from dominance.Dominance

Inherited from ranking.Ranking

Inherited from MutationRate

Inherited from mutation.Mutation

Inherited from niche.MapNiche

Inherited from elitism.NicheElitism

Inherited from niche.Niche

Inherited from MergedGenerations

Inherited from CrossoverRate

Inherited from Crossover

Inherited from fitness.MaxAggregation

Inherited from genome.GAGenomeWithSigma

Inherited from GAGenomeWithSigmaType

Inherited from genome.Sigma

Inherited from genome.GA

Inherited from RandomGenome

Inherited from selection.MapSelection

Inherited from fitness.Aggregation

Inherited from map.MapPlotter

Inherited from selection.Selection

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