Darwin Neuroevolution Framework
swiss_tournament.h
1 // Copyright 2019 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/darwin.h>
18 #include <core/properties.h>
19 #include <core/tournament.h>
20 
21 namespace tournament {
22 
25  PROPERTY(rounds, int, 20, "Number of tournament rounds");
26  PROPERTY(rematches, bool, true, "Play both-side rematches?");
27 };
28 
30 class SwissTournament : public Tournament {
31  class PairingLog;
32 
33  public:
34  explicit SwissTournament(const core::PropertySet& config);
35 
36  void evaluatePopulation(darwin::Population* population, GameRules* game_rules) override;
37 
38  private:
39  SwissTournamentConfig config_;
40 };
41 
42 } // namespace tournament
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