[7418] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15504] | 3 | * Copyright (C) 2002-2017 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.Encodings.IntegerVectorEncoding;
|
---|
| 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
|
---|
| 29 | [Item("GQAPSolution", "A solution to the Generalized Quadratic Assignment Problem.")]
|
---|
| 30 | [StorableClass]
|
---|
| 31 | public class GQAPSolution : Item, INotifyPropertyChanged {
|
---|
| 32 |
|
---|
| 33 | [Storable]
|
---|
| 34 | private IntegerVector assignment;
|
---|
| 35 | public IntegerVector Assignment {
|
---|
| 36 | get { return assignment; }
|
---|
| 37 | set {
|
---|
[15553] | 38 | if (assignment == value) return;
|
---|
[7418] | 39 | assignment = value;
|
---|
[15553] | 40 | OnPropertyChanged(nameof(Assignment));
|
---|
[7418] | 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | [Storable]
|
---|
[15504] | 45 | private Evaluation evaluation;
|
---|
| 46 | public Evaluation Evaluation {
|
---|
| 47 | get { return evaluation; }
|
---|
[7418] | 48 | set {
|
---|
[15504] | 49 | if (evaluation == value) return;
|
---|
| 50 | evaluation = value;
|
---|
| 51 | OnPropertyChanged(nameof(Evaluation));
|
---|
[7418] | 52 | }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | [StorableConstructor]
|
---|
| 56 | protected GQAPSolution(bool deserializing) : base(deserializing) { }
|
---|
| 57 | protected GQAPSolution(GQAPSolution original, Cloner cloner)
|
---|
| 58 | : base(original, cloner) {
|
---|
| 59 | assignment = cloner.Clone(original.assignment);
|
---|
[15504] | 60 | evaluation = cloner.Clone(original.evaluation);
|
---|
[7418] | 61 | }
|
---|
[15504] | 62 | public GQAPSolution(IntegerVector assignment, Evaluation evaluation)
|
---|
[7418] | 63 | : base() {
|
---|
| 64 | this.assignment = assignment;
|
---|
[15504] | 65 | this.evaluation = evaluation;
|
---|
[7418] | 66 | }
|
---|
| 67 |
|
---|
| 68 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 69 | return new GQAPSolution(this, cloner);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | public event PropertyChangedEventHandler PropertyChanged;
|
---|
| 73 | protected virtual void OnPropertyChanged(string propertyName) {
|
---|
| 74 | var handler = PropertyChanged;
|
---|
| 75 | if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
|
---|
| 76 | }
|
---|
| 77 | }
|
---|
| 78 | }
|
---|