[2] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 | using System.Drawing;
|
---|
| 26 | using System.Data;
|
---|
| 27 | using System.Text;
|
---|
| 28 | using System.Windows.Forms;
|
---|
| 29 | using HeuristicLab.PluginInfrastructure;
|
---|
[2474] | 30 | using HeuristicLab.Common;
|
---|
[2] | 31 | using HeuristicLab.Core;
|
---|
| 32 |
|
---|
| 33 | namespace HeuristicLab.SGA {
|
---|
[1153] | 34 | /// <summary>
|
---|
| 35 | /// Visual representation of the <see cref="SGA"/> class.
|
---|
| 36 | /// </summary>
|
---|
[2] | 37 | public partial class SGAEditor : EditorBase {
|
---|
| 38 | private ChooseOperatorDialog chooseOperatorDialog;
|
---|
| 39 |
|
---|
[1153] | 40 | /// <summary>
|
---|
| 41 | /// Gets or sets the <see cref="SGA"/> item to represent visually.
|
---|
| 42 | /// </summary>
|
---|
| 43 | /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="EditorBase"/>.
|
---|
| 44 | /// No own data storage present!</remarks>
|
---|
[2] | 45 | public SGA SGA {
|
---|
| 46 | get { return (SGA)Item; }
|
---|
| 47 | set { base.Item = value; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[1153] | 50 | /// <summary>
|
---|
| 51 | /// Initializes a new instance of <see cref="SGAEditor"/>.
|
---|
| 52 | /// </summary>
|
---|
[2] | 53 | public SGAEditor() {
|
---|
| 54 | InitializeComponent();
|
---|
| 55 | }
|
---|
[1153] | 56 | /// <summary>
|
---|
| 57 | /// Initializes a new instance of <see cref="SGAEditor"/> with the given <paramref name="sga"/>.
|
---|
| 58 | /// </summary>
|
---|
| 59 | /// <param name="sga">The simple genetic algorithm to represent visually.</param>
|
---|
[2] | 60 | public SGAEditor(SGA sga)
|
---|
| 61 | : this() {
|
---|
| 62 | SGA = sga;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[1153] | 65 | /// <summary>
|
---|
| 66 | /// Removes the eventhandlers from the underlying <see cref="IEngine"/> of the <see cref="SGA"/>.
|
---|
| 67 | /// </summary>
|
---|
| 68 | /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="EditorBase"/>.</remarks>
|
---|
[2] | 69 | protected override void RemoveItemEvents() {
|
---|
[2474] | 70 | SGA.Engine.ExceptionOccurred -= new EventHandler<EventArgs<Exception>>(Engine_ExceptionOccurred);
|
---|
[2] | 71 | SGA.Engine.Finished -= new EventHandler(Engine_Finished);
|
---|
| 72 | scopeView.Scope = null;
|
---|
| 73 | base.RemoveItemEvents();
|
---|
| 74 | }
|
---|
[1153] | 75 | /// <summary>
|
---|
| 76 | /// Adds eventhandlers to the underlying <see cref="IEngine"/> of the <see cref="SGA"/>.
|
---|
| 77 | /// </summary>
|
---|
| 78 | /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="EditorBase"/>.</remarks>
|
---|
[2] | 79 | protected override void AddItemEvents() {
|
---|
| 80 | base.AddItemEvents();
|
---|
[2474] | 81 | SGA.Engine.ExceptionOccurred += new EventHandler<EventArgs<Exception>>(Engine_ExceptionOccurred);
|
---|
[2] | 82 | SGA.Engine.Finished += new EventHandler(Engine_Finished);
|
---|
| 83 | SetDataBinding();
|
---|
| 84 | scopeView.Scope = SGA.Engine.GlobalScope;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[1153] | 87 | /// <summary>
|
---|
| 88 | /// Updates all controls with the latest data of the model.
|
---|
| 89 | /// </summary>
|
---|
| 90 | /// <remarks>Calls <see cref="EditorBase.UpdateControls"/> of base class <see cref="EditorBase"/>.</remarks>
|
---|
[2] | 91 | protected override void UpdateControls() {
|
---|
| 92 | base.UpdateControls();
|
---|
| 93 | if (SGA == null) {
|
---|
| 94 | tabControl.Enabled = false;
|
---|
| 95 | } else {
|
---|
| 96 | tabControl.Enabled = true;
|
---|
[65] | 97 | problemInitializationTextBox.Text = SGA.ProblemInjector.GetType().Name;
|
---|
| 98 | solutionGenerationTextBox.Text = SGA.SolutionGenerator.GetType().Name;
|
---|
| 99 | selectionTextBox.Text = SGA.Selector.GetType().Name;
|
---|
| 100 | crossoverTextBox.Text = SGA.Crossover.GetType().Name;
|
---|
| 101 | mutationTextBox.Text = SGA.Mutator.GetType().Name;
|
---|
| 102 | evaluationTextBox.Text = SGA.Evaluator.GetType().Name;
|
---|
[2] | 103 | }
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | private void SetDataBinding() {
|
---|
| 107 | setRandomSeedRandomlyCheckBox.DataBindings.Add("Checked", SGA, "SetSeedRandomly");
|
---|
| 108 | randomSeedTextBox.DataBindings.Add("Text", SGA, "Seed");
|
---|
| 109 | populationSizeTextBox.DataBindings.Add("Text", SGA, "PopulationSize");
|
---|
| 110 | maximumGenerationsTextBox.DataBindings.Add("Text", SGA, "MaximumGenerations");
|
---|
| 111 | mutationRateTextBox.DataBindings.Add("Text", SGA, "MutationRate");
|
---|
| 112 | elitesTextBox.DataBindings.Add("Text", SGA, "Elites");
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | #region Button Events
|
---|
| 116 | private void viewProblemInitializationButton_Click(object sender, EventArgs e) {
|
---|
[65] | 117 | IView view = SGA.ProblemInjector.CreateView();
|
---|
[2] | 118 | if (view != null)
|
---|
| 119 | PluginManager.ControlManager.ShowControl(view);
|
---|
| 120 | }
|
---|
| 121 | private void viewSolutionGenerationButton_Click(object sender, EventArgs e) {
|
---|
| 122 | IView view = SGA.SolutionGenerator.CreateView();
|
---|
| 123 | if (view != null)
|
---|
| 124 | PluginManager.ControlManager.ShowControl(view);
|
---|
| 125 | }
|
---|
| 126 | private void viewSelectionButton_Click(object sender, EventArgs e) {
|
---|
| 127 | IView view = SGA.Selector.CreateView();
|
---|
| 128 | if (view != null)
|
---|
| 129 | PluginManager.ControlManager.ShowControl(view);
|
---|
| 130 | }
|
---|
| 131 | private void viewCrossoverButton_Click(object sender, EventArgs e) {
|
---|
| 132 | IView view = SGA.Crossover.CreateView();
|
---|
| 133 | if (view != null)
|
---|
| 134 | PluginManager.ControlManager.ShowControl(view);
|
---|
| 135 | }
|
---|
| 136 | private void viewMutationButton_Click(object sender, EventArgs e) {
|
---|
| 137 | IView view = SGA.Mutator.CreateView();
|
---|
| 138 | if (view != null)
|
---|
| 139 | PluginManager.ControlManager.ShowControl(view);
|
---|
| 140 | }
|
---|
| 141 | private void viewEvaluationButton_Click(object sender, EventArgs e) {
|
---|
| 142 | IView view = SGA.Evaluator.CreateView();
|
---|
| 143 | if (view != null)
|
---|
| 144 | PluginManager.ControlManager.ShowControl(view);
|
---|
| 145 | }
|
---|
| 146 | private void setProblemInitializationButton_Click(object sender, EventArgs e) {
|
---|
| 147 | if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
|
---|
| 148 | if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
[65] | 149 | SGA.ProblemInjector = chooseOperatorDialog.Operator;
|
---|
| 150 | problemInitializationTextBox.Text = SGA.ProblemInjector.GetType().Name;
|
---|
[2] | 151 | }
|
---|
| 152 | }
|
---|
| 153 | private void setSolutionGenerationButton_Click(object sender, EventArgs e) {
|
---|
| 154 | if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
|
---|
| 155 | if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 156 | SGA.SolutionGenerator= chooseOperatorDialog.Operator;
|
---|
[65] | 157 | solutionGenerationTextBox.Text = SGA.SolutionGenerator.GetType().Name;
|
---|
[2] | 158 | }
|
---|
| 159 | }
|
---|
| 160 | private void setSelectionButton_Click(object sender, EventArgs e) {
|
---|
| 161 | if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
|
---|
| 162 | if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 163 | SGA.Selector = chooseOperatorDialog.Operator;
|
---|
[65] | 164 | selectionTextBox.Text = SGA.Selector.GetType().Name;
|
---|
[2] | 165 | }
|
---|
| 166 | }
|
---|
| 167 | private void setCrossoverButton_Click(object sender, EventArgs e) {
|
---|
| 168 | if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
|
---|
| 169 | if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 170 | SGA.Crossover = chooseOperatorDialog.Operator;
|
---|
[65] | 171 | crossoverTextBox.Text = SGA.Crossover.GetType().Name;
|
---|
[2] | 172 | }
|
---|
| 173 | }
|
---|
| 174 | private void setMutationButton_Click(object sender, EventArgs e) {
|
---|
| 175 | if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
|
---|
| 176 | if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 177 | SGA.Mutator = chooseOperatorDialog.Operator;
|
---|
[65] | 178 | mutationTextBox.Text = SGA.Mutator.GetType().Name;
|
---|
[2] | 179 | }
|
---|
| 180 | }
|
---|
| 181 | private void setEvaluationButton_Click(object sender, EventArgs e) {
|
---|
| 182 | if (chooseOperatorDialog == null) chooseOperatorDialog = new ChooseOperatorDialog();
|
---|
| 183 | if (chooseOperatorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 184 | SGA.Evaluator = chooseOperatorDialog.Operator;
|
---|
[65] | 185 | evaluationTextBox.Text = SGA.Evaluator.GetType().Name;
|
---|
[2] | 186 | }
|
---|
| 187 | }
|
---|
| 188 | private void executeButton_Click(object sender, EventArgs e) {
|
---|
| 189 | executeButton.Enabled = false;
|
---|
| 190 | abortButton.Enabled = true;
|
---|
| 191 | SGA.Engine.Execute();
|
---|
| 192 | }
|
---|
| 193 | private void abortButton_Click(object sender, EventArgs e) {
|
---|
| 194 | SGA.Engine.Abort();
|
---|
| 195 | }
|
---|
| 196 | private void resetButton_Click(object sender, EventArgs e) {
|
---|
| 197 | SGA.Engine.Reset();
|
---|
| 198 | }
|
---|
| 199 | private void cloneEngineButton_Click(object sender, EventArgs e) {
|
---|
| 200 | IEngine clone = (IEngine)SGA.Engine.Clone();
|
---|
| 201 | IEditor editor = ((IEditable)clone).CreateEditor();
|
---|
| 202 | PluginManager.ControlManager.ShowControl(editor);
|
---|
| 203 | }
|
---|
| 204 | #endregion
|
---|
| 205 |
|
---|
| 206 | #region Engine Events
|
---|
[2474] | 207 | private delegate void OnExceptionEventDelegate(object sender, EventArgs<Exception> e);
|
---|
| 208 | private void Engine_ExceptionOccurred(object sender, EventArgs<Exception> e) {
|
---|
[2] | 209 | if (InvokeRequired)
|
---|
| 210 | Invoke(new OnExceptionEventDelegate(Engine_ExceptionOccurred), sender, e);
|
---|
| 211 | else
|
---|
[2474] | 212 | Auxiliary.ShowErrorMessageBox(e.Value);
|
---|
[2] | 213 | }
|
---|
| 214 | private void Engine_Finished(object sender, EventArgs e) {
|
---|
| 215 | scopeView.Refresh();
|
---|
| 216 | executeButton.Enabled = true;
|
---|
| 217 | abortButton.Enabled = false;
|
---|
| 218 | }
|
---|
| 219 | #endregion
|
---|
| 220 | }
|
---|
| 221 | }
|
---|