[15562] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2017 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 |
|
---|
[16728] | 22 | using HEAL.Attic;
|
---|
[15562] | 23 | using HeuristicLab.Common;
|
---|
[15615] | 24 | using HeuristicLab.Core;
|
---|
[15563] | 25 | using HeuristicLab.Data;
|
---|
[15562] | 26 | using HeuristicLab.Encodings.IntegerVectorEncoding;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.Evolutionary {
|
---|
[15616] | 29 | [Item("ES-specific GQAP Solution", "GQAP Solution that holds a strategy parameter")]
|
---|
[16728] | 30 | [StorableType("00A9856C-5E25-4F12-B3B0-6A9FF855B8A9")]
|
---|
[15562] | 31 | public class ESGQAPSolution : GQAPSolution {
|
---|
| 32 |
|
---|
| 33 | [Storable]
|
---|
[15563] | 34 | internal DoubleValue sParam;
|
---|
[15562] | 35 | public double SParam {
|
---|
[15563] | 36 | get { return sParam.Value; }
|
---|
[15562] | 37 | set {
|
---|
[15563] | 38 | if (sParam.Value == value) return;
|
---|
| 39 | sParam.Value = value;
|
---|
[15562] | 40 | OnPropertyChanged(nameof(SParam));
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | [StorableConstructor]
|
---|
[16728] | 45 | protected ESGQAPSolution(StorableConstructorFlag _) : base(_) { }
|
---|
[15562] | 46 | protected ESGQAPSolution(ESGQAPSolution original, Cloner cloner)
|
---|
| 47 | : base(original, cloner) {
|
---|
[15563] | 48 | sParam = cloner.Clone(original.sParam);
|
---|
[15562] | 49 | }
|
---|
| 50 | public ESGQAPSolution(IntegerVector assignment, Evaluation eval, double sParam)
|
---|
| 51 | : base(assignment, eval) {
|
---|
[15563] | 52 | this.sParam = new DoubleValue(sParam);
|
---|
[15562] | 53 | }
|
---|
| 54 |
|
---|
| 55 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 56 | return new ESGQAPSolution(this, cloner);
|
---|
| 57 | }
|
---|
| 58 | }
|
---|
| 59 | }
|
---|