Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAPAssignmentArchive.cs @ 16728

Last change on this file since 16728 was 16728, checked in by abeham, 5 years ago

#1614: updated to new persistence and .NET 4.6.1

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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 System.ComponentModel;
23using HEAL.Attic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HEAL.Attic;
27
28namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
29  [Item("GQAPAssignmentArchive", "Stores the pareto front of assignments.")]
30  [StorableType("EA3C4BB4-322B-47EB-8A04-95DADA3D2C02")]
31  public sealed class GQAPAssignmentArchive : Item, INotifyPropertyChanged {
32
33    [Storable]
34    private ItemList<GQAPSolution> solutions;
35    public ItemList<GQAPSolution> Solutions {
36      get { return solutions; }
37      set {
38        if (solutions == value) return;
39        solutions = value;
40        OnPropertyChanged(nameof(Solutions));
41      }
42    }
43
44    [Storable]
45    private GQAPInstance problemInstance;
46    public GQAPInstance ProblemInstance {
47      get { return problemInstance; }
48      set {
49        if (problemInstance == value) return;
50        problemInstance = value;
51        OnPropertyChanged(nameof(ProblemInstance));
52      }
53    }
54
55    [StorableConstructor]
56    private GQAPAssignmentArchive(StorableConstructorFlag _) : base(_) { }
57    private GQAPAssignmentArchive(GQAPAssignmentArchive original, Cloner cloner)
58      : base(original, cloner) {
59      solutions = cloner.Clone(original.solutions);
60      problemInstance = cloner.Clone(original.problemInstance);
61    }
62    public GQAPAssignmentArchive()
63      : base() {
64      this.solutions = new ItemList<GQAPSolution>();
65    }
66    public GQAPAssignmentArchive(GQAPInstance problemInstance)
67      : this() {
68      this.problemInstance = problemInstance;
69    }
70
71    public override IDeepCloneable Clone(Cloner cloner) {
72      return new GQAPAssignmentArchive(this, cloner);
73    }
74
75    public event PropertyChangedEventHandler PropertyChanged;
76    private void OnPropertyChanged(string propertyName) {
77      var handler = PropertyChanged;
78      if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
79    }
80  }
81}
Note: See TracBrowser for help on using the repository browser.