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