Darwin Neuroevolution Framework
tournament_implementations.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/stringify.h>
18 #include <core/tournament.h>
19 #include <core/simple_tournament.h>
20 #include <core/swiss_tournament.h>
21 
22 #include <memory>
23 using namespace std;
24 
25 namespace tournament {
26 
28 enum class TournamentType {
29  Simple,
30  Swiss,
31 };
32 
33 inline auto customStringify(core::TypeTag<TournamentType>) {
34  static auto stringify = new core::StringifyKnownValues<TournamentType>{
35  { TournamentType::Simple, "simple" },
36  { TournamentType::Swiss, "swiss" },
37  };
38  return stringify;
39 }
40 
42 struct TournamentVariant : public core::PropertySetVariant<TournamentType> {
43  CASE(TournamentType::Simple, simple_tournament, SimpleTournamentConfig);
44  CASE(TournamentType::Swiss, swiss_tournament, SwissTournamentConfig);
45 };
46 
48 inline unique_ptr<Tournament> create(const TournamentVariant& variant) {
49  switch (variant.tag()) {
50  case TournamentType::Simple:
51  return make_unique<SimpleTournament>(variant.simple_tournament);
52  case TournamentType::Swiss:
53  return make_unique<SwissTournament>(variant.swiss_tournament);
54  default:
55  FATAL("Unexpected tournament type");
56  }
57 }
58 
59 } // namespace tournament
STL namespace.
Tournament configurations.
Definition: tournament_implementations.h:42
SwissTournamentConfig swiss_tournament
Variant case for TournamentType::Swiss.
Definition: tournament_implementations.h:44
SimpleTournament configuration.
Definition: simple_tournament.h:24
SwissTournament configuration.
Definition: swiss_tournament.h:24
TAG tag() const
The tag value indicating the active PropertySet case.
Definition: properties.h:202
TournamentType
Tournament type.
Definition: tournament_implementations.h:28
SimpleTournamentConfig simple_tournament
Variant case for TournamentType::Simple.
Definition: tournament_implementations.h:43
unique_ptr< Tournament > create(const TournamentVariant &variant)
Concrete tournament factory.
Definition: tournament_implementations.h:48
A variant type (tagged-union) with PropertySet fields.
Definition: properties.h:194
Swiss-system tournament.
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
A basic tournament implementation.
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166
Reusable tournament implementations.
Definition: simple_tournament.cpp:20