fr.iscpif.mgo.algorithm

Map

trait Map extends Evolution with MG with NoArchive with MapSelection with GAGenomeWithSigma with MaxAggregation with SBXBoundedCrossover with MapElitism 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. MapElitism
  12. MergedGenerations
  13. SBXBoundedCrossover
  14. CrossoverRate
  15. Crossover
  16. MaxAggregation
  17. GAGenomeWithSigma
  18. GAGenomeWithSigmaType
  19. Sigma
  20. GA
  21. RandomGenome
  22. MapSelection
  23. Aggregation
  24. MapPlotter
  25. Selection
  26. NoArchive
  27. MG
  28. Evolution
  29. Elitism
  30. Breeding
  31. Archive
  32. Lambda
  33. Modifier
  34. A
  35. IndividualFilter
  36. Termination
  37. MF
  38. F
  39. P
  40. G
  41. AnyRef
  42. 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. 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, 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]], 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
    MapElitismMergedGenerations
  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: Lens[G, Seq[Double]]

    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 minimumSigma: Double

  31. 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
  32. 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
  33. def mutationRate: Double

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

    Definition Classes
    AnyRef
  35. def neighbourPressure: Int

    Definition Classes
    MapSelection
  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 sbxCrossover(g1: G, g2: G)(implicit rng: Random): (G, G)

    Definition Classes
    SBXBoundedCrossover
  41. 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
  42. def sigma: Lens[G, Seq[Double]]

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

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

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

    Definition Classes
    AnyRef → Any
  48. def tournamentSize: Int

    Definition Classes
    MapSelection
  49. def values: Lens[G, Seq[Double]]

    Definition Classes
    GAGenomeWithSigmaGA
  50. final def wait(): Unit

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. 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 elitism.MapElitism

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