[8955] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[13713] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8955] | 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 |
|
---|
[16728] | 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using System.Text.RegularExpressions;
|
---|
| 27 | using System.Windows.Forms;
|
---|
| 28 | using System.Windows.Forms.DataVisualization.Charting;
|
---|
[13663] | 29 | using HeuristicLab.Analysis;
|
---|
| 30 | using HeuristicLab.Analysis.QualityAnalysis;
|
---|
[13713] | 31 | using HeuristicLab.Clients.OKB.RunCreation;
|
---|
[13663] | 32 | using HeuristicLab.Common;
|
---|
[13649] | 33 | using HeuristicLab.Common.Resources;
|
---|
[13713] | 34 | using HeuristicLab.Core;
|
---|
[13649] | 35 | using HeuristicLab.Core.Views;
|
---|
[13663] | 36 | using HeuristicLab.Data;
|
---|
[13713] | 37 | using HeuristicLab.Data.Views;
|
---|
[13649] | 38 | using HeuristicLab.MainForm;
|
---|
[13722] | 39 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[13649] | 40 | using HeuristicLab.Optimization;
|
---|
| 41 | using HeuristicLab.Optimization.Views;
|
---|
[13667] | 42 | using HeuristicLab.OptimizationExpertSystem.Common;
|
---|
[8955] | 43 |
|
---|
[13667] | 44 | namespace HeuristicLab.OptimizationExpertSystem {
|
---|
[13718] | 45 | [View("Knowledge Center (all-in-one view)")]
|
---|
[13722] | 46 | [Content(typeof(KnowledgeCenter), IsDefaultView = true)]
|
---|
| 47 | public partial class KnowledgeCenterAllinOneView : AsynchronousContentView {
|
---|
[13713] | 48 | private EnumValueView<SeedingStrategyTypes> seedingStrategyView;
|
---|
| 49 | private CheckedItemListView<IScope> seedingSolutionsView;
|
---|
[8955] | 50 | protected virtual bool SuppressEvents { get; set; }
|
---|
[13485] | 51 | private bool okbDownloadInProgress;
|
---|
[8955] | 52 |
|
---|
[13722] | 53 | public new KnowledgeCenter Content {
|
---|
| 54 | get { return (KnowledgeCenter)base.Content; }
|
---|
[8955] | 55 | set { base.Content = value; }
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[13722] | 58 | public KnowledgeCenterAllinOneView() {
|
---|
[8955] | 59 | InitializeComponent();
|
---|
[13551] | 60 | // brings progress panel to front (it is not visible by default, but obstructs other elements in designer)
|
---|
| 61 | this.Controls.SetChildIndex(this.progressPanel, 0);
|
---|
| 62 | algorithmStartButton.Text = string.Empty;
|
---|
| 63 | algorithmStartButton.Image = VSImageLibrary.Play;
|
---|
[13668] | 64 | algorithmCloneButton.Text = string.Empty;
|
---|
| 65 | algorithmCloneButton.Image = VSImageLibrary.Clone;
|
---|
[13475] | 66 | refreshMapButton.Text = string.Empty;
|
---|
| 67 | refreshMapButton.Image = VSImageLibrary.Refresh;
|
---|
[13713] | 68 | seedingStrategyView = new EnumValueView<SeedingStrategyTypes>() {
|
---|
| 69 | Dock = DockStyle.Fill
|
---|
| 70 | };
|
---|
| 71 | seedingSolutionsView = new CheckedItemListView<IScope>() {
|
---|
| 72 | Dock = DockStyle.Fill
|
---|
| 73 | };
|
---|
[13718] | 74 | seedingStrategyPanel.Controls.Add(seedingStrategyView);
|
---|
| 75 | solutionSeedingTabPage.Controls.Add(seedingSolutionsView);
|
---|
[8955] | 76 | }
|
---|
| 77 |
|
---|
[13713] | 78 | #region Event Registration
|
---|
[8955] | 79 | protected override void DeregisterContentEvents() {
|
---|
[13774] | 80 | Content.AlgorithmInstances.CollectionReset -= SuggestedInstancesOnChanged;
|
---|
| 81 | Content.AlgorithmInstances.ItemsAdded -= SuggestedInstancesOnChanged;
|
---|
| 82 | Content.AlgorithmInstances.ItemsMoved -= SuggestedInstancesOnChanged;
|
---|
| 83 | Content.AlgorithmInstances.ItemsRemoved -= SuggestedInstancesOnChanged;
|
---|
| 84 | Content.AlgorithmInstances.ItemsReplaced -= SuggestedInstancesOnChanged;
|
---|
[13718] | 85 | Content.SolutionSeedingPool.CollectionReset -= SeedingPoolOnChanged;
|
---|
| 86 | Content.SolutionSeedingPool.ItemsAdded -= SeedingPoolOnChanged;
|
---|
| 87 | Content.SolutionSeedingPool.ItemsRemoved -= SeedingPoolOnChanged;
|
---|
| 88 | Content.SolutionSeedingPool.ItemsReplaced -= SeedingPoolOnChanged;
|
---|
| 89 | Content.SolutionSeedingPool.CheckedItemsChanged -= SeedingPoolOnChanged;
|
---|
[13713] | 90 | DeregisterProblemEvents(Content.Problem);
|
---|
[8955] | 91 | base.DeregisterContentEvents();
|
---|
| 92 | }
|
---|
[13713] | 93 |
|
---|
[8955] | 94 | protected override void RegisterContentEvents() {
|
---|
| 95 | base.RegisterContentEvents();
|
---|
[13774] | 96 | Content.AlgorithmInstances.CollectionReset += SuggestedInstancesOnChanged;
|
---|
| 97 | Content.AlgorithmInstances.ItemsAdded += SuggestedInstancesOnChanged;
|
---|
| 98 | Content.AlgorithmInstances.ItemsMoved += SuggestedInstancesOnChanged;
|
---|
| 99 | Content.AlgorithmInstances.ItemsRemoved += SuggestedInstancesOnChanged;
|
---|
| 100 | Content.AlgorithmInstances.ItemsReplaced += SuggestedInstancesOnChanged;
|
---|
[13718] | 101 | Content.SolutionSeedingPool.CollectionReset += SeedingPoolOnChanged;
|
---|
| 102 | Content.SolutionSeedingPool.ItemsAdded += SeedingPoolOnChanged;
|
---|
| 103 | Content.SolutionSeedingPool.ItemsRemoved += SeedingPoolOnChanged;
|
---|
| 104 | Content.SolutionSeedingPool.ItemsReplaced += SeedingPoolOnChanged;
|
---|
| 105 | Content.SolutionSeedingPool.CheckedItemsChanged += SeedingPoolOnChanged;
|
---|
[13713] | 106 | RegisterProblemEvents(Content.Problem);
|
---|
[8955] | 107 | }
|
---|
| 108 |
|
---|
[13713] | 109 | private void DeregisterProblemEvents(OKBProblem problem) {
|
---|
| 110 | if (problem == null) return;
|
---|
| 111 | problem.Solutions.ItemsAdded -= SolutionsOnChanged;
|
---|
| 112 | problem.Solutions.ItemsRemoved -= SolutionsOnChanged;
|
---|
| 113 | problem.Solutions.ItemsReplaced -= SolutionsOnChanged;
|
---|
| 114 | problem.Solutions.CollectionReset -= SolutionsOnChanged;
|
---|
| 115 | problem.ProblemChanged -= ContentOnProblemChanged;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | private void RegisterProblemEvents(OKBProblem problem) {
|
---|
| 119 | if (problem == null) return;
|
---|
| 120 | problem.Solutions.ItemsAdded += SolutionsOnChanged;
|
---|
| 121 | problem.Solutions.ItemsRemoved += SolutionsOnChanged;
|
---|
| 122 | problem.Solutions.ItemsReplaced += SolutionsOnChanged;
|
---|
| 123 | problem.Solutions.CollectionReset += SolutionsOnChanged;
|
---|
| 124 | problem.ProblemChanged += ContentOnProblemChanged;
|
---|
| 125 | }
|
---|
| 126 | #endregion
|
---|
| 127 |
|
---|
[8955] | 128 | protected override void OnContentChanged() {
|
---|
| 129 | base.OnContentChanged();
|
---|
| 130 | SuppressEvents = true;
|
---|
[13485] | 131 | okbDownloadInProgress = false;
|
---|
[8955] | 132 | try {
|
---|
| 133 | if (Content == null) {
|
---|
[12804] | 134 | maxEvaluationsTextBox.Text = String.Empty;
|
---|
[12847] | 135 | problemViewHost.Content = null;
|
---|
[13713] | 136 | solverParametersView.Content = null;
|
---|
| 137 | solverResultsView.Content = null;
|
---|
[8955] | 138 | runsView.Content = null;
|
---|
[13551] | 139 | kbViewHost.Content = null;
|
---|
[13475] | 140 | problemInstancesView.Content = null;
|
---|
[13713] | 141 | seedingStrategyView.Content = null;
|
---|
| 142 | seedingSolutionsView.Content = null;
|
---|
[8955] | 143 | } else {
|
---|
[12804] | 144 | maxEvaluationsTextBox.Text = Content.MaximumEvaluations.ToString();
|
---|
[12847] | 145 | problemViewHost.Content = Content.Problem;
|
---|
[13722] | 146 | runsView.Content = Content.InstanceRuns;
|
---|
[13551] | 147 | kbViewHost.ViewType = typeof(RunCollectionRLDView);
|
---|
| 148 | kbViewHost.Content = Content.KnowledgeBase;
|
---|
[13475] | 149 | problemInstancesView.Content = Content.ProblemInstances;
|
---|
[13722] | 150 | solverResultsView.Content = null;
|
---|
[13713] | 151 | seedingStrategyView.Content = Content.SeedingStrategy;
|
---|
| 152 | seedingSolutionsView.Content = Content.SolutionSeedingPool;
|
---|
[8955] | 153 | }
|
---|
| 154 | } finally { SuppressEvents = false; }
|
---|
[12860] | 155 | UpdateSuggestedInstancesCombobox();
|
---|
[13713] | 156 | UpdateSimilarityCalculators();
|
---|
[13663] | 157 | UpdateNamesComboboxes();
|
---|
[8955] | 158 | }
|
---|
[8956] | 159 |
|
---|
[8955] | 160 | protected override void SetEnabledStateOfControls() {
|
---|
| 161 | base.SetEnabledStateOfControls();
|
---|
[12804] | 162 | maxEvaluationsTextBox.Enabled = Content != null && !ReadOnly && !Locked;
|
---|
[13551] | 163 | problemViewHost.Enabled = Content != null && !ReadOnly && !Locked && !okbDownloadInProgress;
|
---|
| 164 | suggestedInstancesComboBox.Enabled = Content != null && !ReadOnly && !Locked && !okbDownloadInProgress;
|
---|
| 165 | algorithmStartButton.Enabled = Content != null && !ReadOnly && !Locked && suggestedInstancesComboBox.SelectedIndex >= 0;
|
---|
[13668] | 166 | algorithmCloneButton.Enabled = Content != null && !ReadOnly && !Locked && suggestedInstancesComboBox.SelectedIndex >= 0;
|
---|
[8955] | 167 | runsView.Enabled = Content != null;
|
---|
[13551] | 168 | kbViewHost.Enabled = Content != null && !okbDownloadInProgress;
|
---|
| 169 | problemInstancesView.Enabled = Content != null && !okbDownloadInProgress;
|
---|
[13475] | 170 | refreshMapButton.Enabled = Content != null;
|
---|
[13551] | 171 | okbDownloadButton.Enabled = Content != null && Content.Problem != null && Content.Problem.ProblemId >= 0 && !ReadOnly && !Locked && !okbDownloadInProgress;
|
---|
[8955] | 172 | }
|
---|
| 173 |
|
---|
| 174 | #region Event Handlers
|
---|
| 175 | #region Content events
|
---|
[13551] | 176 | private void ContentOnProblemChanged(object sender, EventArgs eventArgs) {
|
---|
| 177 | UpdateSuggestedInstancesCombobox();
|
---|
[13663] | 178 | UpdateSimilarityCalculators();
|
---|
[13551] | 179 | SetEnabledStateOfControls();
|
---|
| 180 | }
|
---|
| 181 |
|
---|
[12847] | 182 | private void SuggestedInstancesOnChanged(object sender, EventArgs e) {
|
---|
[12860] | 183 | UpdateSuggestedInstancesCombobox();
|
---|
[12847] | 184 | }
|
---|
[13663] | 185 |
|
---|
[13718] | 186 | private void SeedingPoolOnChanged(object sender, EventArgs e) {
|
---|
| 187 | UpdateSolutionVisualization();
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[13713] | 190 | private void SolutionsOnChanged(object sender, EventArgs e) {
|
---|
[13663] | 191 | UpdateNamesComboboxes();
|
---|
[13713] | 192 | UpdateSolutionVisualization();
|
---|
[13663] | 193 | }
|
---|
[8955] | 194 | #endregion
|
---|
| 195 |
|
---|
| 196 | #region Control events
|
---|
[13561] | 197 | private void MaxEvaluationsTextBoxOnValidating(object sender, CancelEventArgs e) {
|
---|
[8961] | 198 | if (SuppressEvents) return;
|
---|
[12804] | 199 | if (InvokeRequired) {
|
---|
[13561] | 200 | Invoke((Action<object, CancelEventArgs>)MaxEvaluationsTextBoxOnValidating, sender, e);
|
---|
[12804] | 201 | return;
|
---|
| 202 | }
|
---|
| 203 | int value;
|
---|
| 204 | if (!int.TryParse(maxEvaluationsTextBox.Text, out value)) {
|
---|
| 205 | e.Cancel = !maxEvaluationsTextBox.ReadOnly && maxEvaluationsTextBox.Enabled;
|
---|
[13718] | 206 | //errorProvider.SetError(maxEvaluationsTextBox, "Please enter a valid integer number.");
|
---|
[12804] | 207 | } else {
|
---|
[13722] | 208 | Content.MaximumEvaluations.Value = value;
|
---|
[12804] | 209 | e.Cancel = false;
|
---|
[13718] | 210 | //errorProvider.SetError(maxEvaluationsTextBox, null);
|
---|
[12804] | 211 | }
|
---|
| 212 | }
|
---|
[13475] | 213 |
|
---|
[13561] | 214 | private void RefreshMapButtonOnClick(object sender, EventArgs e) {
|
---|
| 215 | UpdateProjectionComboBox();
|
---|
[13475] | 216 | }
|
---|
[13561] | 217 |
|
---|
| 218 | private void OkbDownloadButtonOnClick(object sender, EventArgs e) {
|
---|
[13569] | 219 | if (Content.Problem.ProblemId == -1) {
|
---|
[13551] | 220 | MessageBox.Show("Please select a problem instance first.");
|
---|
| 221 | return;
|
---|
| 222 | }
|
---|
[16728] | 223 | var progress = Progress.ShowOnControl(progressPanel, "");
|
---|
[13485] | 224 | progress.ProgressStateChanged += OkbDownloadProgressOnStateChanged;
|
---|
| 225 | Content.UpdateKnowledgeBaseAsync(progress);
|
---|
| 226 | progressPanel.Visible = true;
|
---|
| 227 | SetEnabledStateOfControls();
|
---|
| 228 | }
|
---|
[13475] | 229 |
|
---|
[13713] | 230 | private void OkbDownloadProgressOnStateChanged(object sender, EventArgs e) {
|
---|
| 231 | if (InvokeRequired) { Invoke((Action<object, EventArgs>)OkbDownloadProgressOnStateChanged, sender, e); return; }
|
---|
[13485] | 232 | var progress = (IProgress)sender;
|
---|
| 233 | okbDownloadInProgress = progress.ProgressState == ProgressState.Started;
|
---|
| 234 | SetEnabledStateOfControls();
|
---|
| 235 | if (!okbDownloadInProgress) {
|
---|
| 236 | progressPanel.Visible = false;
|
---|
| 237 | progress.ProgressStateChanged -= OkbDownloadProgressOnStateChanged;
|
---|
[13475] | 238 | }
|
---|
| 239 | }
|
---|
[13551] | 240 |
|
---|
[13722] | 241 | private async void AlgorithmStartButtonOnClick(object sender, EventArgs e) {
|
---|
| 242 | if (suggestedInstancesComboBox.SelectedIndex >= 0) {
|
---|
| 243 | solverResultsView.Content = await Content.StartAlgorithmAsync(suggestedInstancesComboBox.SelectedIndex);
|
---|
| 244 | }
|
---|
[13551] | 245 | }
|
---|
[13561] | 246 |
|
---|
[13668] | 247 | private void AlgorithmCloneButtonOnClick(object sender, EventArgs e) {
|
---|
| 248 | if (suggestedInstancesComboBox.SelectedIndex >= 0)
|
---|
[13774] | 249 | MainFormManager.MainForm.ShowContent((IAlgorithm)Content.AlgorithmInstances[suggestedInstancesComboBox.SelectedIndex].Clone());
|
---|
[13668] | 250 | }
|
---|
| 251 |
|
---|
[13561] | 252 | private void ProjectionComboBoxOnSelectedIndexChanged(object sender, EventArgs e) {
|
---|
[13713] | 253 | if (InvokeRequired) { Invoke((Action<object, EventArgs>)ProjectionComboBoxOnSelectedIndexChanged, sender, e); return; }
|
---|
[13561] | 254 | if (projectionComboBox.SelectedIndex < 0) return;
|
---|
| 255 | var projection = (string)projectionComboBox.SelectedItem;
|
---|
| 256 | var instancesSeries = instanceMapChart.Series["InstancesSeries"];
|
---|
| 257 | var currentInstanceSeries = instanceMapChart.Series["CurrentInstanceSeries"];
|
---|
| 258 |
|
---|
| 259 | instancesSeries.Points.Clear();
|
---|
| 260 | currentInstanceSeries.Points.Clear();
|
---|
| 261 |
|
---|
| 262 | foreach (var run in Content.ProblemInstances) {
|
---|
| 263 | var xKey = "Projection." + projection + ".X";
|
---|
| 264 | var yKey = "Projection." + projection + ".Y";
|
---|
| 265 | if (!run.Results.ContainsKey(xKey) || !run.Results.ContainsKey(yKey)
|
---|
| 266 | || !(run.Results[xKey] is Data.DoubleValue) || !(run.Results[yKey] is Data.DoubleValue)) continue;
|
---|
| 267 | var x = ((Data.DoubleValue)run.Results[xKey]).Value;
|
---|
| 268 | var y = ((Data.DoubleValue)run.Results[yKey]).Value;
|
---|
| 269 | var dataPoint = new DataPoint(x, y) {
|
---|
| 270 | Label = run.Name
|
---|
| 271 | };
|
---|
[13751] | 272 | if (!Content.IsCurrentInstance(run)) instancesSeries.Points.Add(dataPoint);
|
---|
| 273 | else currentInstanceSeries.Points.Add(dataPoint);
|
---|
[13561] | 274 | }
|
---|
| 275 | }
|
---|
[13649] | 276 |
|
---|
[13713] | 277 | private void SuggestedInstancesComboBoxOnSelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 278 | if (InvokeRequired) { Invoke((Action<object, EventArgs>)SuggestedInstancesComboBoxOnSelectedIndexChanged, sender, e); return; }
|
---|
| 279 | if (suggestedInstancesComboBox.SelectedIndex >= 0) {
|
---|
[13774] | 280 | var alg = Content.AlgorithmInstances[suggestedInstancesComboBox.SelectedIndex];
|
---|
[13718] | 281 | solverParametersView.Content = alg.Parameters;
|
---|
| 282 | var engineAlg = alg as EngineAlgorithm;
|
---|
| 283 | if (engineAlg != null) operatorGraphViewHost.Content = engineAlg.OperatorGraph;
|
---|
| 284 | else operatorGraphViewHost.Content = new Data.StringValue("Algorithm is not modeled as an operator graph.");
|
---|
| 285 | } else {
|
---|
| 286 | solverParametersView.Content = null;
|
---|
| 287 | operatorGraphViewHost.Content = null;
|
---|
| 288 | }
|
---|
[13713] | 289 | SetEnabledStateOfControls();
|
---|
| 290 | }
|
---|
| 291 |
|
---|
| 292 | private void SimilarityComboBoxOnSelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 293 | if (InvokeRequired) { Invoke((Action<object, EventArgs>)SimilarityComboBoxOnSelectedIndexChanged, sender, e); return; }
|
---|
| 294 | var calculator = (ISolutionSimilarityCalculator)similarityComboBox.SelectedItem;
|
---|
| 295 | if (calculator != null) {
|
---|
| 296 | calculator.SolutionVariableName = (string)solutionNameComboBox.SelectedItem;
|
---|
| 297 | calculator.QualityVariableName = Content.Problem.Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 298 | }
|
---|
| 299 | UpdateSolutionDiversityAnalysis(calculator);
|
---|
[13718] | 300 | UpdateSolutionFdcAnalysis(calculator, fdcBetweenBestCheckBox.Checked);
|
---|
[13713] | 301 | UpdateSolutionLengthScaleAnalysis(calculator);
|
---|
| 302 | UpdateSolutionNetworkAnalysis(calculator);
|
---|
| 303 | }
|
---|
[13718] | 304 |
|
---|
| 305 | private void FdcBetweenBestCheckBoxOnCheckedChanged(object sender, EventArgs e) {
|
---|
| 306 | if (InvokeRequired) { Invoke((Action<object, EventArgs>)FdcBetweenBestCheckBoxOnCheckedChanged, sender, e); return; }
|
---|
| 307 | UpdateSolutionFdcAnalysis((ISolutionSimilarityCalculator)similarityComboBox.SelectedItem, fdcBetweenBestCheckBox.Checked);
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | private void SolutionsNetworkChartOnMouseClick(object sender, MouseEventArgs e) {
|
---|
| 311 | var result = solutionsNetworkChart.HitTest(e.X, e.Y);
|
---|
| 312 | if (result.ChartElementType == ChartElementType.DataPoint) {
|
---|
| 313 | var point = (DataPoint)result.Object;
|
---|
| 314 | var solutionScope = point.Tag as IScope;
|
---|
| 315 | if (solutionScope == null || !Content.SolutionSeedingPool.Contains(solutionScope)) return;
|
---|
| 316 | Content.SolutionSeedingPool.SetItemCheckedState(solutionScope, !Content.SolutionSeedingPool.ItemChecked(solutionScope));
|
---|
| 317 | }
|
---|
| 318 | }
|
---|
[13713] | 319 | #endregion
|
---|
| 320 | #endregion
|
---|
| 321 |
|
---|
| 322 | #region Control Configuration
|
---|
| 323 | private void UpdateSuggestedInstancesCombobox() {
|
---|
| 324 | var prevSelection = (IAlgorithm)suggestedInstancesComboBox.SelectedItem;
|
---|
| 325 | var prevNewIndex = -1;
|
---|
| 326 | suggestedInstancesComboBox.Items.Clear();
|
---|
| 327 | if (Content == null) return;
|
---|
| 328 |
|
---|
[13774] | 329 | for (var i = 0; i < Content.AlgorithmInstances.Count; i++) {
|
---|
| 330 | suggestedInstancesComboBox.Items.Add(Content.AlgorithmInstances[i]);
|
---|
| 331 | if (prevSelection == null || Content.AlgorithmInstances[i].Name == prevSelection.Name)
|
---|
[13713] | 332 | prevNewIndex = prevSelection == null ? 0 : i;
|
---|
| 333 | }
|
---|
| 334 | if (prevNewIndex >= 0) {
|
---|
| 335 | suggestedInstancesComboBox.SelectedIndex = prevNewIndex;
|
---|
| 336 | }
|
---|
| 337 | }
|
---|
| 338 |
|
---|
| 339 | private void UpdateSimilarityCalculators() {
|
---|
| 340 | var selected = (ISolutionSimilarityCalculator)(similarityComboBox.SelectedIndex >= 0 ? similarityComboBox.SelectedItem : null);
|
---|
| 341 | similarityComboBox.Items.Clear();
|
---|
| 342 |
|
---|
| 343 | if (Content == null || Content.Problem == null) return;
|
---|
| 344 |
|
---|
| 345 | foreach (var calc in Content.Problem.Operators.OfType<ISolutionSimilarityCalculator>()) {
|
---|
| 346 | similarityComboBox.Items.Add(calc);
|
---|
| 347 | if (selected != null && calc.ItemName == selected.ItemName) similarityComboBox.SelectedItem = calc;
|
---|
| 348 | }
|
---|
| 349 | if (selected == null && similarityComboBox.Items.Count > 0)
|
---|
| 350 | similarityComboBox.SelectedIndex = 0;
|
---|
| 351 | }
|
---|
| 352 |
|
---|
| 353 | private void UpdateNamesComboboxes() {
|
---|
| 354 | var selectedSolutionName = solutionNameComboBox.SelectedIndex >= 0 ? (string)solutionNameComboBox.SelectedItem : string.Empty;
|
---|
| 355 |
|
---|
| 356 | solutionNameComboBox.Items.Clear();
|
---|
| 357 | if (Content == null) return;
|
---|
| 358 | var solutionNames = Content.Problem.Solutions.Select(x => x.Solution).OfType<IScope>().SelectMany(x => x.Variables);
|
---|
| 359 |
|
---|
| 360 | foreach (var sn in solutionNames.GroupBy(x => x.Name).OrderBy(x => x.Key)) {
|
---|
| 361 | solutionNameComboBox.Items.Add(sn.Key);
|
---|
| 362 | // either it was previously selected, or the variable value is defined in the HeuristicLab.Encodings sub-namespace
|
---|
| 363 | if (sn.Key == selectedSolutionName || (string.IsNullOrEmpty(selectedSolutionName) && sn.All(x => x.Value != null && x.Value.GetType().FullName.StartsWith("HeuristicLab.Encodings."))))
|
---|
| 364 | solutionNameComboBox.SelectedItem = sn.Key;
|
---|
| 365 | }
|
---|
| 366 | }
|
---|
| 367 |
|
---|
| 368 | private void UpdateProjectionComboBox() {
|
---|
| 369 | projectionComboBox.Items.Clear();
|
---|
| 370 | var projStrings = Content.ProblemInstances
|
---|
| 371 | .SelectMany(x => x.Results.Where(y => Regex.IsMatch(y.Key, "^Projection[.].*[.][XY]$")))
|
---|
| 372 | .Select(x => Regex.Match(x.Key, "Projection[.](?<g>.*)[.][XY]").Groups["g"].Value)
|
---|
| 373 | .Distinct();
|
---|
| 374 | foreach (var str in projStrings) {
|
---|
| 375 | projectionComboBox.Items.Add(str);
|
---|
| 376 | }
|
---|
| 377 | }
|
---|
| 378 | #endregion
|
---|
| 379 |
|
---|
| 380 | #region Visualization
|
---|
| 381 | #region Solution Visualization
|
---|
| 382 | public void UpdateSolutionVisualization() {
|
---|
| 383 | if (InvokeRequired) { Invoke((Action)UpdateSolutionVisualization); return; }
|
---|
| 384 | var qualityName = Content.Problem.Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 385 | UpdateSolutionQualityAnalysis(qualityName);
|
---|
| 386 | if (similarityComboBox.SelectedIndex >= 0) {
|
---|
| 387 | var calculator = (ISolutionSimilarityCalculator)similarityComboBox.SelectedItem;
|
---|
| 388 | UpdateSolutionDiversityAnalysis(calculator);
|
---|
[13718] | 389 | UpdateSolutionFdcAnalysis(calculator, fdcBetweenBestCheckBox.Checked);
|
---|
[13713] | 390 | UpdateSolutionLengthScaleAnalysis(calculator);
|
---|
| 391 | UpdateSolutionNetworkAnalysis(calculator);
|
---|
| 392 | } else {
|
---|
| 393 | solutionsDiversityViewHost.Content = null;
|
---|
| 394 | solutionsFdcViewHost.Content = null;
|
---|
| 395 | solutionsLengthScaleViewHost.Content = null;
|
---|
| 396 | solutionsNetworkChart.Series.First().Points.Clear();
|
---|
| 397 | }
|
---|
| 398 | }
|
---|
[13663] | 399 | private void UpdateSolutionQualityAnalysis(string qualityName) {
|
---|
| 400 | var dt = solutionsQualityViewHost.Content as DataTable;
|
---|
| 401 | if (dt == null) {
|
---|
| 402 | dt = QualityDistributionAnalyzer.PrepareTable(qualityName);
|
---|
[13713] | 403 | dt.VisualProperties.Title = "Quality Distribution";
|
---|
[13663] | 404 | solutionsQualityViewHost.Content = dt;
|
---|
| 405 | }
|
---|
[13718] | 406 | QualityDistributionAnalyzer.UpdateTable(dt, GetSolutionScopes().Select(x => GetQuality(x, qualityName) ?? double.NaN).Where(x => !double.IsNaN(x)));
|
---|
[13663] | 407 | }
|
---|
| 408 |
|
---|
| 409 | private void UpdateSolutionDiversityAnalysis(ISolutionSimilarityCalculator calculator) {
|
---|
| 410 | try {
|
---|
| 411 | solutionsDiversityViewHost.Content = null;
|
---|
[13718] | 412 | var solutionScopes = GetSolutionScopes();
|
---|
| 413 | var similarities = new double[solutionScopes.Count, solutionScopes.Count];
|
---|
| 414 | for (var i = 0; i < solutionScopes.Count; i++) {
|
---|
| 415 | for (var j = 0; j < solutionScopes.Count; j++)
|
---|
| 416 | similarities[i, j] = calculator.CalculateSolutionSimilarity(solutionScopes[i], solutionScopes[j]);
|
---|
[13663] | 417 | }
|
---|
| 418 | var hm = new HeatMap(similarities, "Solution Similarities", 0.0, 1.0);
|
---|
| 419 | solutionsDiversityViewHost.Content = hm;
|
---|
| 420 | } catch { }
|
---|
| 421 | }
|
---|
| 422 |
|
---|
[13718] | 423 | private void UpdateSolutionFdcAnalysis(ISolutionSimilarityCalculator calculator, bool distanceToBest) {
|
---|
[13663] | 424 | try {
|
---|
| 425 | solutionsFdcViewHost.Content = null;
|
---|
[13718] | 426 | var solutionScopes = GetSolutionScopes();
|
---|
[13663] | 427 | var points = new List<Point2D<double>>();
|
---|
[13718] | 428 | if (distanceToBest) {
|
---|
| 429 | var maximization = ((IValueParameter<Data.BoolValue>)Content.Problem.MaximizationParameter).Value.Value;
|
---|
| 430 | var bestSolutions = (maximization ? solutionScopes.MaxItems(x => GetQuality(x, calculator.QualityVariableName) ?? double.NegativeInfinity)
|
---|
| 431 | : solutionScopes.MinItems(x => GetQuality(x, calculator.QualityVariableName) ?? double.PositiveInfinity)).ToList();
|
---|
| 432 | foreach (var solScope in solutionScopes.Except(bestSolutions)) {
|
---|
| 433 | var maxSimilarity = bestSolutions.Max(x => calculator.CalculateSolutionSimilarity(solScope, x));
|
---|
| 434 | var qDiff = (GetQuality(solScope, calculator.QualityVariableName) ?? double.NaN)
|
---|
| 435 | - (GetQuality(bestSolutions[0], calculator.QualityVariableName) ?? double.NaN);
|
---|
| 436 | points.Add(new Point2D<double>(Math.Abs(qDiff), 1.0 - maxSimilarity));
|
---|
[13663] | 437 | }
|
---|
[13718] | 438 | } else {
|
---|
| 439 | for (int i = 0; i < solutionScopes.Count; i++) {
|
---|
| 440 | for (int j = 0; j < solutionScopes.Count; j++) {
|
---|
| 441 | if (i == j) continue;
|
---|
| 442 | var qDiff = (GetQuality(solutionScopes[i], calculator.QualityVariableName) ?? double.NaN)
|
---|
| 443 | - (GetQuality(solutionScopes[j], calculator.QualityVariableName) ?? double.NaN);
|
---|
| 444 | if (double.IsNaN(qDiff)) continue;
|
---|
| 445 | points.Add(new Point2D<double>(Math.Abs(qDiff), 1.0 - calculator.CalculateSolutionSimilarity(solutionScopes[i], solutionScopes[j])));
|
---|
| 446 | }
|
---|
| 447 | }
|
---|
[13663] | 448 | }
|
---|
| 449 | var splot = new ScatterPlot("Fitness-Distance", "");
|
---|
[13713] | 450 | splot.VisualProperties.XAxisTitle = "Absolute Fitness Difference";
|
---|
| 451 | splot.VisualProperties.XAxisMinimumFixedValue = 0.0;
|
---|
[13718] | 452 | splot.VisualProperties.XAxisMinimumAuto = false;
|
---|
[13713] | 453 | splot.VisualProperties.YAxisTitle = "Solution Distance";
|
---|
| 454 | splot.VisualProperties.YAxisMinimumFixedValue = 0.0;
|
---|
[13718] | 455 | splot.VisualProperties.YAxisMinimumAuto = false;
|
---|
[13713] | 456 | splot.VisualProperties.YAxisMaximumFixedValue = 1.0;
|
---|
[13718] | 457 | splot.VisualProperties.YAxisMaximumAuto = false;
|
---|
[13663] | 458 | var row = new ScatterPlotDataRow("Fdc", "", points);
|
---|
| 459 | row.VisualProperties.PointSize = 7;
|
---|
| 460 | splot.Rows.Add(row);
|
---|
| 461 | solutionsFdcViewHost.Content = splot;
|
---|
| 462 | } catch { }
|
---|
| 463 | }
|
---|
| 464 |
|
---|
| 465 | private void UpdateSolutionLengthScaleAnalysis(ISolutionSimilarityCalculator calculator) {
|
---|
| 466 | try {
|
---|
| 467 | solutionsLengthScaleViewHost.Content = null;
|
---|
| 468 | var dt = solutionsLengthScaleViewHost.Content as DataTable;
|
---|
| 469 | if (dt == null) {
|
---|
| 470 | dt = QualityDistributionAnalyzer.PrepareTable("Length Scale");
|
---|
| 471 | solutionsLengthScaleViewHost.Content = dt;
|
---|
| 472 | }
|
---|
| 473 | QualityDistributionAnalyzer.UpdateTable(dt, CalculateLengthScale(calculator));
|
---|
[13718] | 474 | } catch {
|
---|
| 475 | solutionsLengthScaleViewHost.Content = null;
|
---|
| 476 | }
|
---|
[13663] | 477 | }
|
---|
| 478 |
|
---|
| 479 | private IEnumerable<double> CalculateLengthScale(ISolutionSimilarityCalculator calculator) {
|
---|
[13718] | 480 | var solutionScopes = GetSolutionScopes();
|
---|
| 481 | for (var i = 0; i < solutionScopes.Count; i++) {
|
---|
| 482 | for (var j = 0; j < solutionScopes.Count; j++) {
|
---|
[13663] | 483 | if (i == j) continue;
|
---|
[13718] | 484 | var sim = calculator.CalculateSolutionSimilarity(solutionScopes[i], solutionScopes[j]);
|
---|
[13663] | 485 | if (sim.IsAlmost(0)) continue;
|
---|
[13718] | 486 | var qDiff = (GetQuality(solutionScopes[i], calculator.QualityVariableName) ?? double.NaN)
|
---|
| 487 | - (GetQuality(solutionScopes[j], calculator.QualityVariableName) ?? double.NaN);
|
---|
| 488 | if (!double.IsNaN(qDiff)) yield return Math.Abs(qDiff) / sim;
|
---|
[13663] | 489 | }
|
---|
| 490 | }
|
---|
| 491 | }
|
---|
| 492 |
|
---|
[13668] | 493 | private void UpdateSolutionNetworkAnalysis(ISolutionSimilarityCalculator calculator) {
|
---|
[13718] | 494 | var series = solutionsNetworkChart.Series["SolutionSeries"];
|
---|
| 495 | var seedingSeries = solutionsNetworkChart.Series["SeedingSolutionSeries"];
|
---|
[13668] | 496 | try {
|
---|
| 497 | series.Points.Clear();
|
---|
[13718] | 498 | seedingSeries.Points.Clear();
|
---|
| 499 | var solutionScopes = GetSolutionScopes();
|
---|
| 500 | var dissimilarities = new DoubleMatrix(solutionScopes.Count, solutionScopes.Count);
|
---|
| 501 | for (var i = 0; i < solutionScopes.Count; i++) {
|
---|
| 502 | for (var j = 0; j < solutionScopes.Count; j++) {
|
---|
[13668] | 503 | if (i == j) continue;
|
---|
[13718] | 504 | dissimilarities[i, j] = 1.0 - calculator.CalculateSolutionSimilarity(solutionScopes[i], solutionScopes[j]);
|
---|
[13668] | 505 | }
|
---|
| 506 | }
|
---|
| 507 | var coords = MultidimensionalScaling.KruskalShepard(dissimilarities);
|
---|
| 508 | for (var i = 0; i < coords.Rows; i++) {
|
---|
[13718] | 509 | var quality = GetQuality(solutionScopes[i], calculator.QualityVariableName) ?? double.NaN;
|
---|
| 510 | var dataPoint = new DataPoint() {
|
---|
[13713] | 511 | Name = (i + 1).ToString(),
|
---|
[13668] | 512 | XValue = coords[i, 0],
|
---|
[13718] | 513 | YValues = new[] {coords[i, 1], quality},
|
---|
| 514 | Label = i + ": " + quality,
|
---|
| 515 | Tag = solutionScopes[i]
|
---|
| 516 | };
|
---|
| 517 | if (Content.SolutionSeedingPool.Contains(solutionScopes[i]) && Content.SolutionSeedingPool.ItemChecked(solutionScopes[i]))
|
---|
| 518 | seedingSeries.Points.Add(dataPoint);
|
---|
| 519 | else series.Points.Add(dataPoint);
|
---|
[13668] | 520 | }
|
---|
[13718] | 521 | } catch {
|
---|
| 522 | // problems in calculating the similarity
|
---|
| 523 | series.Points.Clear();
|
---|
| 524 | seedingSeries.Points.Clear();
|
---|
| 525 | }
|
---|
[13668] | 526 | }
|
---|
[13713] | 527 | #endregion
|
---|
| 528 | #endregion
|
---|
[13718] | 529 |
|
---|
| 530 | private List<IScope> GetSolutionScopes() {
|
---|
| 531 | return Content.Problem.Solutions.Select(x => x.Solution).OfType<IScope>().ToList();
|
---|
| 532 | }
|
---|
| 533 |
|
---|
| 534 | private double? GetQuality(IScope scope, string qualityName) {
|
---|
| 535 | IVariable v;
|
---|
| 536 | if (!scope.Variables.TryGetValue(qualityName, out v)) return null;
|
---|
| 537 | var dval = v.Value as Data.DoubleValue;
|
---|
| 538 | if (dval == null) return null;
|
---|
| 539 | return dval.Value;
|
---|
| 540 | }
|
---|
[8955] | 541 | }
|
---|
| 542 | }
|
---|