17 #include <core/darwin.h> 18 #include <core/utils.h> 19 #include <core/properties.h> A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
virtual void evaluatePopulation(darwin::Population *population, GameRules *game_rules)=0
Run the tournament and assigns fitness values based on the results.
virtual GameOutcome play(const darwin::Genotype *player1, const darwin::Genotype *player2) const =0
Sets up a game between players "grown" from the argument genotypes.
float player1_score
Player1 score.
Definition: tournament.h:26
Final game scores.
Definition: tournament.h:25
float player2_score
Player2 score.
Definition: tournament.h:27
Game rules abstraction (used to run the tournament)
Definition: tournament.h:40
virtual Scores scores(GameOutcome outcome) const =0
Returns the final scores based on a game outcome.
Classes derived from this are not copyable or movable.
Definition: utils.h:69
Tournament interface.
Definition: tournament.h:53
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126
Reusable tournament implementations.
Definition: simple_tournament.cpp:20
GameOutcome
Game outcome.
Definition: tournament.h:32