[6956] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15504] | 3 | * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6956] | 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 {
|
---|
[7432] | 29 | [Item("Generalized QAP Assignment", "Represents the solution as well as the problem parameters of a GQAP instance.")]
|
---|
[6956] | 30 | [StorableClass]
|
---|
| 31 | public sealed class GQAPAssignment : Item, INotifyPropertyChanged {
|
---|
| 32 |
|
---|
| 33 | [Storable]
|
---|
[7470] | 34 | private IntegerVector assignment;
|
---|
| 35 | public IntegerVector Assignment {
|
---|
| 36 | get { return assignment; }
|
---|
[6956] | 37 | set {
|
---|
[15504] | 38 | if (assignment == value) return;
|
---|
[7470] | 39 | assignment = value;
|
---|
[15504] | 40 | OnPropertyChanged(nameof(Assignment));
|
---|
[6956] | 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | [Storable]
|
---|
[15504] | 45 | private Evaluation evaluation;
|
---|
| 46 | public Evaluation Evaluation {
|
---|
| 47 | get { return evaluation; }
|
---|
[7470] | 48 | set {
|
---|
[15504] | 49 | if (evaluation == value) return;
|
---|
| 50 | evaluation = value;
|
---|
| 51 | OnPropertyChanged(nameof(Evaluation));
|
---|
[7470] | 52 | }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | [Storable]
|
---|
[15504] | 56 | private GQAPInstance problemInstance;
|
---|
| 57 | public GQAPInstance ProblemInstance {
|
---|
| 58 | get { return problemInstance; }
|
---|
[7470] | 59 | set {
|
---|
[15504] | 60 | if (problemInstance == value) return;
|
---|
| 61 | problemInstance = value;
|
---|
| 62 | OnPropertyChanged(nameof(ProblemInstance));
|
---|
[7470] | 63 | }
|
---|
| 64 | }
|
---|
| 65 |
|
---|
[6956] | 66 | [StorableConstructor]
|
---|
| 67 | private GQAPAssignment(bool deserializing) : base(deserializing) { }
|
---|
| 68 | private GQAPAssignment(GQAPAssignment original, Cloner cloner)
|
---|
| 69 | : base(original, cloner) {
|
---|
[7470] | 70 | assignment = cloner.Clone(original.assignment);
|
---|
[15504] | 71 | evaluation = cloner.Clone(original.evaluation);
|
---|
| 72 | problemInstance = cloner.Clone(original.problemInstance);
|
---|
[6956] | 73 | }
|
---|
[15504] | 74 | public GQAPAssignment(IntegerVector assignment, GQAPInstance problemInstance)
|
---|
| 75 | : this(assignment, problemInstance, problemInstance.Evaluate(assignment)) { }
|
---|
| 76 | public GQAPAssignment(IntegerVector assignment, GQAPInstance problemInstance, Evaluation evaluation)
|
---|
[7415] | 77 | : base() {
|
---|
[7470] | 78 | this.assignment = assignment;
|
---|
[15504] | 79 | this.evaluation = evaluation;
|
---|
| 80 | this.problemInstance = problemInstance;
|
---|
[7415] | 81 | }
|
---|
[6956] | 82 |
|
---|
| 83 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 84 | return new GQAPAssignment(this, cloner);
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | public event PropertyChangedEventHandler PropertyChanged;
|
---|
| 88 | private void OnPropertyChanged(string propertyName) {
|
---|
| 89 | var handler = PropertyChanged;
|
---|
| 90 | if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
|
---|
| 91 | }
|
---|
| 92 | }
|
---|
| 93 | }
|
---|