Darwin Neuroevolution Framework
perf_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 
22 #include <QLineSeries>
23 using namespace QtCharts;
24 
25 namespace Ui {
26 class PerfWindow;
27 }
28 
29 class PerfWindow : public QFrame {
30  Q_OBJECT
31 
32  static constexpr int kInitialGenerations = 20;
33  static constexpr int kXTicks = 10;
34  static constexpr int kYTicks = 2;
35  static constexpr float kAutoRangeScale = 1.1f;
36 
37  const QColor kTopSeriesColor{ 0, 0, 255 };
38  const QColor kAreaSeriesColor{ 100, 200, 255 };
39 
40  public:
41  explicit PerfWindow(QWidget* parent = nullptr);
42  ~PerfWindow();
43 
44  private:
45  void updateChart(const darwin::EvolutionStage& stage);
46 
47  private:
48  Ui::PerfWindow* ui;
49 
50  int stage_index_ = 0;
51  QLineSeries* top_stage_series_ = new QLineSeries;
52 };
Definition: evolution_window.h:22
Tracks the execution of an execution (sub)stage.
Definition: evolution.h:134