Darwin Neuroevolution Framework
start_evolution_dialog.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 #include <core/properties.h>
20 #include <core/stringify.h>
21 
22 #include <QDialog>
23 
24 namespace Ui {
25 class StartEvolutionDialog;
26 }
27 
28 class StartEvolutionDialog : public QDialog {
29  Q_OBJECT
30 
31  public:
32  explicit StartEvolutionDialog(QWidget* parent);
33  ~StartEvolutionDialog();
34 
35  const auto& evolutionConfig() const { return evolution_config_; }
36 
37  int batchRuns() const;
38 
39  void done(int result) override;
40 
41  private:
42  Ui::StartEvolutionDialog* ui;
43 
44  darwin::EvolutionConfig evolution_config_;
45 };
Definition: evolution_window.h:22
Settings for an evolution experiment run.
Definition: evolution.h:104