[16722] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2019 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 HEAL.Attic;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using DoubleValue = HeuristicLab.Data.DoubleValue;
|
---|
| 26 | // Can be deleted potnetinaly
|
---|
| 27 | namespace HeuristicLab.Algorithms.EvolvmentModelsOfModels {
|
---|
[16734] | 28 | [StorableType("AB38211D-5F52-4420-A606-1C3CB58BA27C")]
|
---|
[16722] | 29 | public interface IEMMSolution : IItem {
|
---|
| 30 | IItem Individual { get; set; }
|
---|
| 31 | DoubleValue Qualities { get; set; }
|
---|
| 32 | }
|
---|
| 33 | [Item("EMMSolution", "Represents a solution inside the EMM population")]
|
---|
[16734] | 34 | [StorableType("C0E63430-5000-4592-BBE4-2D3E0EE1AE3F")]
|
---|
[16722] | 35 | public class EMMSolution : Item, IEMMSolution {
|
---|
| 36 | [Storable]
|
---|
| 37 | public IItem Individual { get; set; }
|
---|
| 38 |
|
---|
| 39 | [Storable]
|
---|
| 40 | public DoubleValue Qualities { get; set; }
|
---|
| 41 |
|
---|
| 42 | public EMMSolution() { }
|
---|
| 43 |
|
---|
| 44 | public EMMSolution(IItem individual) : this() {
|
---|
| 45 | Individual = individual;
|
---|
| 46 | }
|
---|
[17002] | 47 | public EMMSolution(IScope scope) {
|
---|
| 48 | Individual = scope;
|
---|
| 49 | Qualities = (DoubleValue)scope.Variables["Quality"].Value;
|
---|
| 50 | }
|
---|
[16722] | 51 | public EMMSolution(IItem individual, DoubleValue qualities) {
|
---|
| 52 | Individual = individual;
|
---|
| 53 | Qualities = qualities;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | public EMMSolution(DoubleValue qualities) {
|
---|
| 57 | Qualities = qualities;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | public int Dimensions = 1;
|
---|
| 61 |
|
---|
| 62 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 63 | return new EMMSolution(this, cloner);
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | protected EMMSolution(EMMSolution original, Cloner cloner) : base(original, cloner) {
|
---|
[17002] | 67 | Qualities = cloner.Clone(original.Qualities);
|
---|
| 68 | Individual = cloner.Clone(original.Individual);
|
---|
[16722] | 69 | }
|
---|
| 70 |
|
---|
| 71 | [StorableConstructor]
|
---|
| 72 | protected EMMSolution(StorableConstructorFlag _) : base(_) { }
|
---|
| 73 | }
|
---|
| 74 | [Item("EMMSolution", "Represents a solution inside the EMM population")]
|
---|
[16734] | 75 | [StorableType("559EA31B-2263-4233-900C-EC62120EE580")]
|
---|
[16722] | 76 | public class EMMSolution<T> : EMMSolution where T : class, IItem {
|
---|
| 77 | public new T Individual {
|
---|
| 78 | get { return (T)base.Individual; }
|
---|
| 79 | set { base.Individual = value; }
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | public EMMSolution(T individual) : base(individual) { }
|
---|
| 83 |
|
---|
| 84 | protected EMMSolution(EMMSolution<T> original, Cloner cloner) : base(original, cloner) { }
|
---|
| 85 |
|
---|
| 86 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 87 | return new EMMSolution<T>(this, cloner);
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | [StorableConstructor]
|
---|
| 91 | protected EMMSolution(StorableConstructorFlag _) : base(_) { }
|
---|
| 92 | }
|
---|
| 93 | }
|
---|