[4374] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17226] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4374] | 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;
|
---|
| 23 | using System.Drawing;
|
---|
| 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
[16723] | 27 | using HEAL.Attic;
|
---|
[4374] | 28 | using HeuristicLab.Problems.VehicleRouting.Interfaces;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Problems.VehicleRouting {
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Represents a VRP solution which can be visualized in the GUI.
|
---|
| 33 | /// </summary>
|
---|
| 34 | [Item("VRPSolution", "Represents a VRP solution which can be visualized in the GUI.")]
|
---|
[16723] | 35 | [StorableType("74CBBEDB-DE6E-4122-AC38-F49DC2B85730")]
|
---|
[4374] | 36 | public sealed class VRPSolution : Item {
|
---|
[7203] | 37 | public static new Image StaticItemImage {
|
---|
[5867] | 38 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; }
|
---|
[4374] | 39 | }
|
---|
| 40 |
|
---|
| 41 | [Storable]
|
---|
| 42 | private IVRPProblemInstance problemInstance;
|
---|
| 43 | public IVRPProblemInstance ProblemInstance {
|
---|
| 44 | get { return problemInstance; }
|
---|
| 45 | set {
|
---|
| 46 | if (problemInstance != value) {
|
---|
| 47 | if (problemInstance != null) DeregisterProblemInstanceEvents();
|
---|
| 48 | problemInstance = value;
|
---|
| 49 | if (problemInstance != null) RegisterProblemInstanceEvents();
|
---|
| 50 | OnProblemInstanceChanged();
|
---|
| 51 | }
|
---|
| 52 | }
|
---|
| 53 | }
|
---|
| 54 | [Storable]
|
---|
[17698] | 55 | private IVRPEncodedSolution solution;
|
---|
| 56 | public IVRPEncodedSolution Solution {
|
---|
[4374] | 57 | get { return solution; }
|
---|
| 58 | set {
|
---|
| 59 | if (solution != value) {
|
---|
| 60 | if (solution != null) DeregisterSolutionEvents();
|
---|
| 61 | solution = value;
|
---|
| 62 | if (solution != null) RegisterSolutionEvents();
|
---|
| 63 | OnSolutionChanged();
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
| 67 | [Storable]
|
---|
| 68 | private DoubleValue quality;
|
---|
| 69 | public DoubleValue Quality {
|
---|
| 70 | get { return quality; }
|
---|
| 71 | set {
|
---|
| 72 | if (quality != value) {
|
---|
| 73 | if (quality != null) DeregisterQualityEvents();
|
---|
| 74 | quality = value;
|
---|
| 75 | if (quality != null) RegisterQualityEvents();
|
---|
| 76 | OnQualityChanged();
|
---|
| 77 | }
|
---|
| 78 | }
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | public VRPSolution() : base() { }
|
---|
| 82 |
|
---|
[17698] | 83 | public VRPSolution(IVRPProblemInstance problemInstance, IVRPEncodedSolution solution, DoubleValue quality)
|
---|
[4374] | 84 | : base() {
|
---|
| 85 | this.problemInstance = problemInstance;
|
---|
| 86 | this.solution = solution;
|
---|
| 87 | this.quality = quality;
|
---|
[8053] | 88 |
|
---|
[4374] | 89 | Initialize();
|
---|
| 90 | }
|
---|
| 91 | [StorableConstructor]
|
---|
[16723] | 92 | private VRPSolution(StorableConstructorFlag _) : base(_) { }
|
---|
[4374] | 93 |
|
---|
| 94 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 95 | private void Initialize() {
|
---|
| 96 | if (problemInstance != null) RegisterProblemInstanceEvents();
|
---|
| 97 | if (solution != null) RegisterSolutionEvents();
|
---|
| 98 | if (quality != null) RegisterQualityEvents();
|
---|
| 99 | }
|
---|
| 100 |
|
---|
[4752] | 101 |
|
---|
[4374] | 102 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4752] | 103 | return new VRPSolution(this, cloner);
|
---|
[4374] | 104 | }
|
---|
| 105 |
|
---|
[4752] | 106 | private VRPSolution(VRPSolution original, Cloner cloner)
|
---|
| 107 | : base(original, cloner) {
|
---|
[17698] | 108 | this.solution = (IVRPEncodedSolution)cloner.Clone(original.solution);
|
---|
[4752] | 109 | this.quality = (DoubleValue)cloner.Clone(original.quality);
|
---|
| 110 |
|
---|
[7906] | 111 | if (original.ProblemInstance != null && cloner.ClonedObjectRegistered(original.ProblemInstance))
|
---|
| 112 | this.ProblemInstance = (IVRPProblemInstance)cloner.Clone(original.ProblemInstance);
|
---|
| 113 | else
|
---|
| 114 | this.ProblemInstance = original.ProblemInstance;
|
---|
| 115 |
|
---|
[4752] | 116 | this.Initialize();
|
---|
| 117 | }
|
---|
| 118 |
|
---|
[4374] | 119 | #region Events
|
---|
| 120 | public event EventHandler ProblemInstanceChanged;
|
---|
| 121 | private void OnProblemInstanceChanged() {
|
---|
| 122 | var changed = ProblemInstanceChanged;
|
---|
| 123 | if (changed != null)
|
---|
| 124 | changed(this, EventArgs.Empty);
|
---|
| 125 | }
|
---|
| 126 | public event EventHandler SolutionChanged;
|
---|
| 127 | private void OnSolutionChanged() {
|
---|
| 128 | var changed = SolutionChanged;
|
---|
| 129 | if (changed != null)
|
---|
| 130 | changed(this, EventArgs.Empty);
|
---|
| 131 | }
|
---|
| 132 | public event EventHandler QualityChanged;
|
---|
| 133 | private void OnQualityChanged() {
|
---|
| 134 | var changed = QualityChanged;
|
---|
| 135 | if (changed != null)
|
---|
| 136 | changed(this, EventArgs.Empty);
|
---|
| 137 | }
|
---|
[8053] | 138 |
|
---|
[4374] | 139 | private void RegisterProblemInstanceEvents() {
|
---|
| 140 | ProblemInstance.ToStringChanged += new EventHandler(ProblemInstance_ToStringChanged);
|
---|
| 141 | }
|
---|
| 142 | private void DeregisterProblemInstanceEvents() {
|
---|
| 143 | ProblemInstance.ToStringChanged -= new EventHandler(ProblemInstance_ToStringChanged);
|
---|
| 144 | }
|
---|
| 145 | private void RegisterSolutionEvents() {
|
---|
| 146 | Solution.ToStringChanged += new EventHandler(Solution_ToStringChanged);
|
---|
| 147 | }
|
---|
| 148 | private void DeregisterSolutionEvents() {
|
---|
| 149 | Solution.ToStringChanged -= new EventHandler(Solution_ToStringChanged);
|
---|
| 150 | }
|
---|
| 151 | private void RegisterQualityEvents() {
|
---|
| 152 | Quality.ValueChanged += new EventHandler(Quality_ValueChanged);
|
---|
| 153 | }
|
---|
| 154 | private void DeregisterQualityEvents() {
|
---|
| 155 | Quality.ValueChanged -= new EventHandler(Quality_ValueChanged);
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | private void ProblemInstance_ToStringChanged(object sender, EventArgs e) {
|
---|
| 159 | OnProblemInstanceChanged();
|
---|
| 160 | }
|
---|
| 161 | private void Solution_ToStringChanged(object sender, EventArgs e) {
|
---|
| 162 | OnSolutionChanged();
|
---|
| 163 | }
|
---|
| 164 | private void Quality_ValueChanged(object sender, EventArgs e) {
|
---|
| 165 | OnQualityChanged();
|
---|
| 166 | }
|
---|
| 167 | #endregion
|
---|
| 168 | }
|
---|
| 169 | }
|
---|