Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ConvexHullView.cs @ 10026

Last change on this file since 10026 was 10026, checked in by ascheibe, 10 years ago

#1886

  • removed old caching code
  • adapted convex hull view and some other minor improvements
File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Linq;
24using HeuristicLab.Analysis.SolutionCaching.PermutationEncoding;
25using HeuristicLab.Core.Views;
26using HeuristicLab.Encodings.PermutationEncoding;
27using HeuristicLab.MainForm;
28
29namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views {
30  [View("ConvexHull View")]
31  [Content(typeof(PermutationSolutionCache), false)]
32  public partial class ConvexHullView : ItemView {
33    public ConvexHullView() {
34      InitializeComponent();
35    }
36
37    public new PermutationSolutionCache Content {
38      get { return (PermutationSolutionCache)base.Content; }
39      set { base.Content = value; }
40    }
41
42    protected override void OnContentChanged() {
43      base.OnContentChanged();
44
45      if (Content != null) { }
46    }
47
48    private void testConvexHullButton_Click(object sender, System.EventArgs e) {
49      for (int i = 0; i < 20; i++) {
50        var sols = Content.GetSolutionsFromGeneration(i);
51
52        var input = sols.Select(x => ConvertPermutationToVertex(x)).ToArray();
53        var convexHull = HyperHull.CalculateUsingSMO(input);
54        resultsTextBox.Text += "Nr. of Points in Generation " + i + ": " + convexHull.Count + Environment.NewLine;
55        resultsTextBox.Text += "Volume of Convex Hull in Generation " + i + " is: " +
56                               ConvexHullMeasures.CalculateVolume(convexHull) + Environment.NewLine;
57      }
58    }
59
60    private double[] ConvertPermutationToVertex(Permutation p) {
61      double[] vertex = p.Select(x => (double)x).ToArray();
62      return vertex;
63    }
64  }
65}
Note: See TracBrowser for help on using the repository browser.