[44] | 1 | verbosity = 0 |
---|
| 2 | |
---|
| 3 | breedthreads = 1 |
---|
| 4 | evalthreads = 1 |
---|
| 5 | seed.0 = 4357 |
---|
| 6 | |
---|
| 7 | pop = ec.Population |
---|
| 8 | state = ec.simple.SimpleEvolutionState |
---|
| 9 | init = ec.simple.SimpleInitializer |
---|
| 10 | finish = ec.simple.SimpleFinisher |
---|
| 11 | breed = ec.simple.SimpleBreeder |
---|
| 12 | stat = ec.simple.SimpleStatistics |
---|
| 13 | exch = ec.simple.SimpleExchanger |
---|
| 14 | eval = coevolution.eval.ArchivingCoevolutionaryEvaluator |
---|
| 15 | |
---|
| 16 | generations = 5000 |
---|
| 17 | checkpoint = false |
---|
| 18 | prefix = ec |
---|
| 19 | checkpoint-modulo = 1 |
---|
| 20 | |
---|
| 21 | pop.subpops = 1 |
---|
| 22 | pop.subpop.0 = ec.Subpopulation |
---|
| 23 | pop.subpop.0.size = 5 |
---|
| 24 | pop.subpop.0.duplicate-retries = 0 |
---|
| 25 | |
---|
| 26 | pop.subpop.0.species = ec.vector.FloatVectorSpecies |
---|
| 27 | pop.subpop.0.species.ind = ec.vector.DoubleVectorIndividual |
---|
| 28 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness |
---|
| 29 | pop.subpop.0.species.genome-size = 64 |
---|
| 30 | pop.subpop.0.species.min-gene = -5 |
---|
| 31 | pop.subpop.0.species.max-gene = 5 |
---|
| 32 | pop.subpop.0.species.crossover-type = one |
---|
| 33 | pop.subpop.0.species.mutation-prob = 0.05 |
---|
| 34 | pop.subpop.0.speciec.mutation-type = gauss |
---|
| 35 | pop.subpop.0.species.mutation-stdev = 0.25 |
---|
| 36 | |
---|
| 37 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline |
---|
| 38 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorCrossoverPipeline |
---|
| 39 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection |
---|
| 40 | pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection |
---|
| 41 | pop.subpop.0.species.pipe.source.0.source.0.size = 3 |
---|
| 42 | pop.subpop.0.species.pipe.source.0.source.1.size = 3 |
---|
| 43 | |
---|
| 44 | eval.problem = coevolution.app.othello.Othello |
---|
| 45 | eval.statistics = coevolution.statistics.SimpleCoevolutionaryStatistics |
---|
| 46 | eval.interaction-scheme = coevolution.interaction.IntraPopulationInteractionScheme |
---|
| 47 | eval.subpop.0.sampling-method = coevolution.sampling.AllSamplingMethod |
---|
| 48 | eval.subpop.0.fitness-method = coevolution.fitness.SimpleSumFitness |
---|
| 49 | |
---|
| 50 | stat.file = $out.stat |
---|
| 51 | stat.num-children = 1 |
---|
| 52 | stat.child.0 = coevolution.statistics.AverageObjectiveFitnessStatistics |
---|
| 53 | stat.child.0.fitness-file = $fitness.stat |
---|
| 54 | stat.child.0.title = Average performance |
---|
| 55 | stat.child.0.x-axis-label = generation |
---|
| 56 | stat.child.0.y-axis-label = fitness |
---|
| 57 | |
---|
| 58 | stat.child.0.fitness-calc = coevolution.app.othello.OthelloRandomPlayer2 |
---|
| 59 | stat.child.0.fitness-calc.play-both = true |
---|
| 60 | stat.child.0.fitness-calc.repeats = 100 |
---|
| 61 | stat.child.0.fitness-calc.evaluated-randomness = 0.1 |
---|