Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/OffSpringSelectionGpEditor.cs @ 1236

Last change on this file since 1236 was 1236, checked in by gkronber, 15 years ago

Fixed bugs in OffspringSelectionGP and the associated editor. #224 (Simple frontend for GP for non-expert users (similar to HeurisicLab.SGA))

File size: 5.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Drawing;
26using System.Data;
27using System.Text;
28using System.Windows.Forms;
29using HeuristicLab.PluginInfrastructure;
30using HeuristicLab.Core;
31
32namespace HeuristicLab.GP.StructureIdentification {
33  public partial class OffspringSelectionGpEditor : EditorBase {
34    private ChooseOperatorDialog chooseOperatorDialog;
35
36    public OffspringSelectionGP OffspringSelectionGP {
37      get { return (OffspringSelectionGP)Item; }
38      set { base.Item = value; }
39    }
40
41    public OffspringSelectionGpEditor() {
42      InitializeComponent();
43    }
44    public OffspringSelectionGpEditor(OffspringSelectionGP osgp)
45      : this() {
46      OffspringSelectionGP = osgp;
47    }
48
49    protected override void RemoveItemEvents() {
50      OffspringSelectionGP.Engine.ExceptionOccurred -= new EventHandler<ExceptionEventArgs>(Engine_ExceptionOccurred);
51      OffspringSelectionGP.Engine.Finished -= new EventHandler(Engine_Finished);
52      scopeView.Scope = null;
53      base.RemoveItemEvents();
54    }
55    protected override void AddItemEvents() {
56      base.AddItemEvents();
57      OffspringSelectionGP.Engine.ExceptionOccurred += new EventHandler<ExceptionEventArgs>(Engine_ExceptionOccurred);
58      OffspringSelectionGP.Engine.Finished += new EventHandler(Engine_Finished);
59      SetDataBinding();
60      scopeView.Scope = OffspringSelectionGP.Engine.GlobalScope;
61    }
62
63    protected override void UpdateControls() {
64      base.UpdateControls();
65      if (OffspringSelectionGP == null) {
66        tabControl.Enabled = false;
67      } else {
68        tabControl.Enabled = true;
69        problemInitializationTextBox.Text = OffspringSelectionGP.ProblemInjector.GetType().Name;
70      }
71    }
72
73    private void SetDataBinding() {
74      setRandomSeedRandomlyCheckBox.DataBindings.Add("Checked", OffspringSelectionGP, "SetSeedRandomly");
75      randomSeedTextBox.DataBindings.Add("Text", OffspringSelectionGP, "Seed");
76      populationSizeTextBox.DataBindings.Add("Text", OffspringSelectionGP, "PopulationSize");
77      maximumGenerationsTextBox.DataBindings.Add("Text", OffspringSelectionGP, "MaxGenerations");
78      selectionPressureTextBox.DataBindings.Add("Text", OffspringSelectionGP, "SelectionPressureLimit");
79      mutationRateTextBox.DataBindings.Add("Text", OffspringSelectionGP, "MutationRate");
80      elitesTextBox.DataBindings.Add("Text", OffspringSelectionGP, "Elites");
81    }
82
83    #region Button Events
84    private void viewProblemInjectorButton_Click(object sender, EventArgs e) {
85      IView view = OffspringSelectionGP.ProblemInjector.CreateView();
86      if(view != null)
87        PluginManager.ControlManager.ShowControl(view);
88    }
89
90    private void setProblemInitializationButton_Click(object sender, EventArgs e) {
91      if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
92      if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
93        OffspringSelectionGP.ProblemInjector = chooseOperatorDialog.Operator;
94        problemInitializationTextBox.Text = OffspringSelectionGP.ProblemInjector.GetType().Name;
95      }
96    }
97    private void executeButton_Click(object sender, EventArgs e) {
98      executeButton.Enabled = false;
99      abortButton.Enabled = true;
100      resetButton.Enabled = false;
101      OffspringSelectionGP.Engine.Execute();
102    }
103    private void abortButton_Click(object sender, EventArgs e) {
104      OffspringSelectionGP.Engine.Abort();
105    }
106    private void resetButton_Click(object sender, EventArgs e) {
107      OffspringSelectionGP.Engine.Reset();
108    }
109    private void cloneEngineButton_Click(object sender, EventArgs e) {
110      IEngine clone = (IEngine)OffspringSelectionGP.Engine.Clone();
111      IEditor editor = ((IEditable)clone).CreateEditor();
112      PluginManager.ControlManager.ShowControl(editor);
113    }
114    #endregion
115
116    #region Engine Events
117    private delegate void OnExceptionEventDelegate(object sender, ExceptionEventArgs e);
118    private void Engine_ExceptionOccurred(object sender, ExceptionEventArgs e) {
119      if (InvokeRequired)
120        Invoke(new OnExceptionEventDelegate(Engine_ExceptionOccurred), sender, e);
121      else
122        Auxiliary.ShowErrorMessageBox(e.Exception);
123    }
124    private void Engine_Finished(object sender, EventArgs e) {
125      if(InvokeRequired)
126        Invoke((EventHandler)Engine_Finished, sender, e);
127      else {
128        scopeView.Refresh();
129        executeButton.Enabled = true;
130        abortButton.Enabled = false;
131        resetButton.Enabled = true;
132      }
133    }
134    #endregion
135  }
136}
Note: See TracBrowser for help on using the repository browser.