17 #include <core/darwin.h> 18 #include <core/properties.h> 19 #include <core/tournament.h> 25 PROPERTY(
rounds,
int, 20,
"Number of tournament rounds");
26 PROPERTY(
rematches,
bool,
true,
"Play both-side rematches?");
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
int rounds
"Number of tournament rounds"
Definition: swiss_tournament.h:25
bool rematches
"Play both-side rematches?"
Definition: swiss_tournament.h:26
Swiss-style tournament
Definition: swiss_tournament.h:30
SwissTournament configuration.
Definition: swiss_tournament.h:24
Game rules abstraction (used to run the tournament)
Definition: tournament.h:40
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
void evaluatePopulation(darwin::Population *population, GameRules *game_rules) override
Run the tournament and assigns fitness values based on the results.
Definition: swiss_tournament.cpp:64
Tournament interface.
Definition: tournament.h:53
Reusable tournament implementations.
Definition: simple_tournament.cpp:20