Darwin Neuroevolution Framework
fitness_window.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/evolution.h>
19 
20 #include <QFrame>
21 #include <QLineSeries>
22 using namespace QtCharts;
23 
24 #include <map>
25 #include <random>
26 #include <string>
27 using namespace std;
28 
29 namespace Ui {
30 class FitnessWindow;
31 }
32 
33 class FitnessWindow : public QFrame {
34  Q_OBJECT
35 
36  static constexpr int kInitialGenerations = 20;
37  static constexpr int kXTicks = 10;
38  static constexpr int kYTicks = 4;
39  static constexpr float kFitnessAutoRange = 1.1f;
40 
41  public:
42  explicit FitnessWindow(QWidget* parent = nullptr);
43  ~FitnessWindow();
44 
45  private:
46  void updateChart(const darwin::GenerationSummary& summary);
47 
48  private:
49  Ui::FitnessWindow* ui;
50 
51  QLineSeries* best_fitness_series_ = nullptr;
52  QLineSeries* median_fitness_series_ = nullptr;
53  QLineSeries* worst_fitness_series_ = nullptr;
54 
55  map<string, QLineSeries*> extra_fitness_series_;
56 
57  // use a fixed seed to get consistent colors
58  default_random_engine rnd{ 2 };
59 };
Summary of a generation (fitness samples, best genotype, ...)
Definition: evolution.h:37
Definition: evolution_window.h:22
STL namespace.