Darwin Neuroevolution Framework
new_experiment_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/universe.h>
19 
20 #include <QDialog>
21 
22 namespace Ui {
23 class NewExperimentDialog;
24 }
25 
26 class NewExperimentDialog : public QDialog {
27  Q_OBJECT
28 
29  public:
30  explicit NewExperimentDialog(QWidget* parent,
31  const darwin::Universe* universe,
32  const darwin::Experiment* parent_experiment);
33 
34  ~NewExperimentDialog();
35 
36  void done(int result) override;
37 
38  QString experimentName() const;
39  QString populationName() const;
40  QString domainName() const;
41  int populationSize() const;
42  darwin::ComplexityHint populationHint() const;
43  darwin::ComplexityHint domainHint() const;
44 
45  private slots:
46  void on_experiment_name_textChanged(const QString&);
47 
48  private:
49  Ui::NewExperimentDialog* ui;
50 
51  const darwin::Universe* universe_ = nullptr;
52 };
ComplexityHint
A generic hint for the initial population & domain setup.
Definition: darwin.h:47
The persistent storage for all the experiments and variations.
Definition: universe.h:111
Definition: evolution_window.h:22
Encapsulates the runtime experiment state.
Definition: darwin.h:328