Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary/ESGQAPSolution.cs @ 15700

Last change on this file since 15700 was 15616, checked in by abeham, 6 years ago

#1614:

  • Added missing Item and StorableClass attributes
  • Removed running analyzer on empty solutions in GRASP
File size: 2.1 KB
Line 
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
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Encodings.IntegerVectorEncoding;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.Evolutionary {
29  [Item("ES-specific GQAP Solution", "GQAP Solution that holds a strategy parameter")]
30  [StorableClass]
31  public class ESGQAPSolution : GQAPSolution {
32
33    [Storable]
34    internal DoubleValue sParam;
35    public double SParam {
36      get { return sParam.Value; }
37      set {
38        if (sParam.Value == value) return;
39        sParam.Value = value;
40        OnPropertyChanged(nameof(SParam));
41      }
42    }
43
44    [StorableConstructor]
45    protected ESGQAPSolution(bool deserializing) : base(deserializing) { }
46    protected ESGQAPSolution(ESGQAPSolution original, Cloner cloner)
47    : base(original, cloner) {
48      sParam = cloner.Clone(original.sParam);
49    }
50    public ESGQAPSolution(IntegerVector assignment, Evaluation eval, double sParam)
51      : base(assignment, eval) {
52      this.sParam = new DoubleValue(sParam);
53    }
54   
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new ESGQAPSolution(this, cloner);
57    }
58  }
59}
Note: See TracBrowser for help on using the repository browser.