[7418] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16077] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7418] | 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 System.ComponentModel;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[16712] | 26 | using HEAL.Attic;
|
---|
[7418] | 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
|
---|
| 29 | [Item("GQAPAssignmentArchive", "Stores the pareto front of assignments.")]
|
---|
[16712] | 30 | [StorableType("EA3C4BB4-322B-47EB-8A04-95DADA3D2C02")]
|
---|
[7935] | 31 | public sealed class GQAPAssignmentArchive : Item, INotifyPropertyChanged {
|
---|
[7418] | 32 |
|
---|
| 33 | [Storable]
|
---|
| 34 | private ItemList<GQAPSolution> solutions;
|
---|
| 35 | public ItemList<GQAPSolution> Solutions {
|
---|
| 36 | get { return solutions; }
|
---|
| 37 | set {
|
---|
[15504] | 38 | if (solutions == value) return;
|
---|
[7418] | 39 | solutions = value;
|
---|
[15504] | 40 | OnPropertyChanged(nameof(Solutions));
|
---|
[7418] | 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | [Storable]
|
---|
[15504] | 45 | private GQAPInstance problemInstance;
|
---|
| 46 | public GQAPInstance ProblemInstance {
|
---|
| 47 | get { return problemInstance; }
|
---|
[7418] | 48 | set {
|
---|
[15504] | 49 | if (problemInstance == value) return;
|
---|
| 50 | problemInstance = value;
|
---|
| 51 | OnPropertyChanged(nameof(ProblemInstance));
|
---|
[7418] | 52 | }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | [StorableConstructor]
|
---|
[16712] | 56 | private GQAPAssignmentArchive(StorableConstructorFlag _) : base(_) { }
|
---|
[7418] | 57 | private GQAPAssignmentArchive(GQAPAssignmentArchive original, Cloner cloner)
|
---|
| 58 | : base(original, cloner) {
|
---|
[7432] | 59 | solutions = cloner.Clone(original.solutions);
|
---|
[15504] | 60 | problemInstance = cloner.Clone(original.problemInstance);
|
---|
[7418] | 61 | }
|
---|
| 62 | public GQAPAssignmentArchive()
|
---|
| 63 | : base() {
|
---|
| 64 | this.solutions = new ItemList<GQAPSolution>();
|
---|
| 65 | }
|
---|
[15504] | 66 | public GQAPAssignmentArchive(GQAPInstance problemInstance)
|
---|
[7418] | 67 | : this() {
|
---|
[15504] | 68 | this.problemInstance = problemInstance;
|
---|
[7418] | 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 | }
|
---|