User:Bigfatcat

From Robowiki
Jump to navigation Jump to search

Genetic Programming with Robocode

I'm creating a genetic program (GP) to optimise a specified set of Robot functions over a specific number of generations. I've almost completed the GP and I am currently optimising the figures below and others such as mutation and crossover probability.

Number of Generations: 40

Initial Population: 100

Reproduction Rate: 8% per generation

Fitness Measure: Score / (Score + (average score of opponents) )

The program evaluates fitness via a ten rounded battle between the current robot being evaluated, two sample robots and my own hand made 'role model' robot. Robots that have not been mutated and have not experienced crossover with its parents are not re-evaluated.

Some pretty decent robots have been produced so far but I'm still trying to optimise the algorithm.

I'll edit with updates. Cheers! --Bigfatcat 13:16, 26 April 2011 (UTC)


My Robocode battles are run via my own created BattleRunner class which creates a new BattleEngine and BattleSpecification etc... I was wondering, would my application run any faster by running the BattleRunners as Threads? or would that kill my program and/or computer? --Bigfatcat 20:44, 25 April 2011 (UTC)