Darwin Neuroevolution Framework
tournament.h
1 // Copyright 2018 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/utils.h>
19 #include <core/properties.h>
20 
21 namespace tournament {
22 
25 struct Scores {
26  float player1_score = 0;
27  float player2_score = 0;
28 };
29 
32 enum class GameOutcome {
35  Draw,
36 };
37 
40 class GameRules : public core::NonCopyable {
41  public:
42  virtual ~GameRules() = default;
43 
45  virtual GameOutcome play(const darwin::Genotype* player1,
46  const darwin::Genotype* player2) const = 0;
47 
49  virtual Scores scores(GameOutcome outcome) const = 0;
50 };
51 
53 class Tournament : public core::NonCopyable {
54  public:
56  virtual void evaluatePopulation(darwin::Population* population,
57  GameRules* game_rules) = 0;
58 };
59 
60 } // namespace tournament
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
Game ended up in a draw.
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