1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2016 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 | using System.Linq;
|
---|
22 | using HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
|
---|
27 | [StorableClass]
|
---|
28 | [Item("ScatterPlot", "The optimal front, current front and its associated Points in the searchspace")]
|
---|
29 | public class ScatterPlotContent : Item {
|
---|
30 |
|
---|
31 | [Storable]
|
---|
32 | private double[][] qualities;
|
---|
33 | public double[][] Qualities {
|
---|
34 | get {
|
---|
35 | return qualities;
|
---|
36 | }
|
---|
37 |
|
---|
38 | private set {
|
---|
39 | qualities = value;
|
---|
40 | }
|
---|
41 | }
|
---|
42 |
|
---|
43 | [Storable]
|
---|
44 | private int objectives;
|
---|
45 | public int Objectives {
|
---|
46 | get {
|
---|
47 | return objectives;
|
---|
48 | }
|
---|
49 |
|
---|
50 | private set {
|
---|
51 | objectives = value;
|
---|
52 | }
|
---|
53 | }
|
---|
54 |
|
---|
55 | [Storable]
|
---|
56 | private double[][] solutions;
|
---|
57 | public double[][] Solutions {
|
---|
58 | get {
|
---|
59 | return solutions;
|
---|
60 | }
|
---|
61 |
|
---|
62 | private set {
|
---|
63 | solutions = value;
|
---|
64 | }
|
---|
65 | }
|
---|
66 |
|
---|
67 | [Storable]
|
---|
68 | private double[][] paretoFront;
|
---|
69 | public double[][] ParetoFront {
|
---|
70 | get {
|
---|
71 | return paretoFront;
|
---|
72 | }
|
---|
73 |
|
---|
74 | private set {
|
---|
75 | paretoFront = value;
|
---|
76 | }
|
---|
77 | }
|
---|
78 |
|
---|
79 | [StorableConstructor]
|
---|
80 | protected ScatterPlotContent(bool deserializing) : base() { }
|
---|
81 |
|
---|
82 | protected ScatterPlotContent(ScatterPlotContent original, Cloner cloner)
|
---|
83 | : this() {
|
---|
84 | this.qualities = original.qualities.Select(s => s.ToArray()).ToArray();
|
---|
85 | this.solutions = original.solutions.Select(s => s.ToArray()).ToArray();
|
---|
86 | this.paretoFront = original.paretoFront.Select(s => s.ToArray()).ToArray();
|
---|
87 | this.objectives = original.objectives;
|
---|
88 | }
|
---|
89 | protected ScatterPlotContent() : base() { }
|
---|
90 | public ScatterPlotContent(double[][] qualities, double[][] solutions, double[][] paretoFront, int objectives) {
|
---|
91 | this.qualities = qualities;
|
---|
92 | this.solutions = solutions;
|
---|
93 | this.paretoFront = paretoFront;
|
---|
94 | this.objectives = objectives;
|
---|
95 | }
|
---|
96 |
|
---|
97 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
98 | return new ScatterPlotContent(this, cloner);
|
---|
99 | }
|
---|
100 | }
|
---|
101 | }
|
---|