[2796] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
[2865] | 22 | using System;
|
---|
[2975] | 23 | using System.Collections.Generic;
|
---|
[2865] | 24 | using System.Drawing;
|
---|
[3153] | 25 | using System.IO;
|
---|
[2865] | 26 | using System.Linq;
|
---|
[2975] | 27 | using HeuristicLab.Common;
|
---|
[2796] | 28 | using HeuristicLab.Core;
|
---|
| 29 | using HeuristicLab.Data;
|
---|
[3053] | 30 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
[2834] | 31 | using HeuristicLab.Optimization;
|
---|
[2805] | 32 | using HeuristicLab.Parameters;
|
---|
[2796] | 33 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2865] | 34 | using HeuristicLab.PluginInfrastructure;
|
---|
[2796] | 35 |
|
---|
[3158] | 36 | namespace HeuristicLab.Problems.TravelingSalesman {
|
---|
[3159] | 37 | [Item("Traveling Salesman Problem", "Represents a symmetric Traveling Salesman Problem.")]
|
---|
[2796] | 38 | [Creatable("Problems")]
|
---|
[3017] | 39 | [StorableClass]
|
---|
[4419] | 40 | public sealed class TravelingSalesmanProblem : ParameterizedNamedItem, ISingleObjectiveProblem, IStorableContent {
|
---|
| 41 | public string Filename { get; set; }
|
---|
| 42 |
|
---|
[2865] | 43 | public override Image ItemImage {
|
---|
| 44 | get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; }
|
---|
[2805] | 45 | }
|
---|
| 46 |
|
---|
[2975] | 47 | #region Parameter Properties
|
---|
[3048] | 48 | public ValueParameter<BoolValue> MaximizationParameter {
|
---|
| 49 | get { return (ValueParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
[2805] | 50 | }
|
---|
[2975] | 51 | IParameter ISingleObjectiveProblem.MaximizationParameter {
|
---|
| 52 | get { return MaximizationParameter; }
|
---|
[2865] | 53 | }
|
---|
[3048] | 54 | public ValueParameter<DoubleMatrix> CoordinatesParameter {
|
---|
| 55 | get { return (ValueParameter<DoubleMatrix>)Parameters["Coordinates"]; }
|
---|
[2865] | 56 | }
|
---|
[3066] | 57 | public OptionalValueParameter<DoubleMatrix> DistanceMatrixParameter {
|
---|
| 58 | get { return (OptionalValueParameter<DoubleMatrix>)Parameters["DistanceMatrix"]; }
|
---|
| 59 | }
|
---|
| 60 | public ValueParameter<BoolValue> UseDistanceMatrixParameter {
|
---|
| 61 | get { return (ValueParameter<BoolValue>)Parameters["UseDistanceMatrix"]; }
|
---|
| 62 | }
|
---|
[2975] | 63 | public ValueParameter<IPermutationCreator> SolutionCreatorParameter {
|
---|
| 64 | get { return (ValueParameter<IPermutationCreator>)Parameters["SolutionCreator"]; }
|
---|
[2865] | 65 | }
|
---|
[2975] | 66 | IParameter IProblem.SolutionCreatorParameter {
|
---|
| 67 | get { return SolutionCreatorParameter; }
|
---|
[2865] | 68 | }
|
---|
[2975] | 69 | public ValueParameter<ITSPEvaluator> EvaluatorParameter {
|
---|
| 70 | get { return (ValueParameter<ITSPEvaluator>)Parameters["Evaluator"]; }
|
---|
| 71 | }
|
---|
| 72 | IParameter IProblem.EvaluatorParameter {
|
---|
| 73 | get { return EvaluatorParameter; }
|
---|
| 74 | }
|
---|
[3048] | 75 | public OptionalValueParameter<DoubleValue> BestKnownQualityParameter {
|
---|
| 76 | get { return (OptionalValueParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
|
---|
[2975] | 77 | }
|
---|
[3080] | 78 | IParameter ISingleObjectiveProblem.BestKnownQualityParameter {
|
---|
| 79 | get { return BestKnownQualityParameter; }
|
---|
| 80 | }
|
---|
[3151] | 81 | public OptionalValueParameter<Permutation> BestKnownSolutionParameter {
|
---|
| 82 | get { return (OptionalValueParameter<Permutation>)Parameters["BestKnownSolution"]; }
|
---|
| 83 | }
|
---|
[2975] | 84 | #endregion
|
---|
[2805] | 85 |
|
---|
[2975] | 86 | #region Properties
|
---|
[3048] | 87 | public DoubleMatrix Coordinates {
|
---|
[2975] | 88 | get { return CoordinatesParameter.Value; }
|
---|
| 89 | set { CoordinatesParameter.Value = value; }
|
---|
[2865] | 90 | }
|
---|
[3066] | 91 | public DoubleMatrix DistanceMatrix {
|
---|
| 92 | get { return DistanceMatrixParameter.Value; }
|
---|
| 93 | set { DistanceMatrixParameter.Value = value; }
|
---|
| 94 | }
|
---|
| 95 | public BoolValue UseDistanceMatrix {
|
---|
| 96 | get { return UseDistanceMatrixParameter.Value; }
|
---|
| 97 | set { UseDistanceMatrixParameter.Value = value; }
|
---|
| 98 | }
|
---|
[2975] | 99 | public IPermutationCreator SolutionCreator {
|
---|
[2865] | 100 | get { return SolutionCreatorParameter.Value; }
|
---|
[2975] | 101 | set { SolutionCreatorParameter.Value = value; }
|
---|
[2865] | 102 | }
|
---|
[2975] | 103 | ISolutionCreator IProblem.SolutionCreator {
|
---|
| 104 | get { return SolutionCreatorParameter.Value; }
|
---|
| 105 | }
|
---|
| 106 | public ITSPEvaluator Evaluator {
|
---|
[2865] | 107 | get { return EvaluatorParameter.Value; }
|
---|
[2975] | 108 | set { EvaluatorParameter.Value = value; }
|
---|
[2865] | 109 | }
|
---|
[2975] | 110 | ISingleObjectiveEvaluator ISingleObjectiveProblem.Evaluator {
|
---|
| 111 | get { return EvaluatorParameter.Value; }
|
---|
| 112 | }
|
---|
[2865] | 113 | IEvaluator IProblem.Evaluator {
|
---|
| 114 | get { return EvaluatorParameter.Value; }
|
---|
| 115 | }
|
---|
[3048] | 116 | public DoubleValue BestKnownQuality {
|
---|
[2975] | 117 | get { return BestKnownQualityParameter.Value; }
|
---|
| 118 | set { BestKnownQualityParameter.Value = value; }
|
---|
| 119 | }
|
---|
[3151] | 120 | public Permutation BestKnownSolution {
|
---|
| 121 | get { return BestKnownSolutionParameter.Value; }
|
---|
| 122 | set { BestKnownSolutionParameter.Value = value; }
|
---|
| 123 | }
|
---|
[2975] | 124 | public IEnumerable<IOperator> Operators {
|
---|
[3616] | 125 | get { return operators; }
|
---|
[2865] | 126 | }
|
---|
[3663] | 127 | private BestTSPSolutionAnalyzer BestTSPSolutionAnalyzer {
|
---|
| 128 | get { return operators.OfType<BestTSPSolutionAnalyzer>().FirstOrDefault(); }
|
---|
[3616] | 129 | }
|
---|
[4623] | 130 | private TSPAlleleFrequencyAnalyzer TSPAlleleFrequencyAnalyzer {
|
---|
| 131 | get { return operators.OfType<TSPAlleleFrequencyAnalyzer>().FirstOrDefault(); }
|
---|
| 132 | }
|
---|
[2975] | 133 | #endregion
|
---|
[2865] | 134 |
|
---|
[4098] | 135 | [Storable]
|
---|
| 136 | private List<IOperator> operators;
|
---|
| 137 |
|
---|
| 138 | [StorableConstructor]
|
---|
[4118] | 139 | private TravelingSalesmanProblem(bool deserializing) : base(deserializing) { }
|
---|
[3159] | 140 | public TravelingSalesmanProblem()
|
---|
[2796] | 141 | : base() {
|
---|
[2891] | 142 | RandomPermutationCreator creator = new RandomPermutationCreator();
|
---|
| 143 | TSPRoundedEuclideanPathEvaluator evaluator = new TSPRoundedEuclideanPathEvaluator();
|
---|
| 144 |
|
---|
[3048] | 145 | Parameters.Add(new ValueParameter<BoolValue>("Maximization", "Set to false as the Traveling Salesman Problem is a minimization problem.", new BoolValue(false)));
|
---|
[3504] | 146 | Parameters.Add(new ValueParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities."));
|
---|
[3066] | 147 | Parameters.Add(new OptionalValueParameter<DoubleMatrix>("DistanceMatrix", "The matrix which contains the distances between the cities."));
|
---|
| 148 | Parameters.Add(new ValueParameter<BoolValue>("UseDistanceMatrix", "True if a distance matrix should be calculated and used for evaluation, otherwise false.", new BoolValue(true)));
|
---|
[2891] | 149 | Parameters.Add(new ValueParameter<IPermutationCreator>("SolutionCreator", "The operator which should be used to create new TSP solutions.", creator));
|
---|
| 150 | Parameters.Add(new ValueParameter<ITSPEvaluator>("Evaluator", "The operator which should be used to evaluate TSP solutions.", evaluator));
|
---|
[3048] | 151 | Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this TSP instance."));
|
---|
[3151] | 152 | Parameters.Add(new OptionalValueParameter<Permutation>("BestKnownSolution", "The best known solution of this TSP instance."));
|
---|
[2865] | 153 |
|
---|
[3504] | 154 | Coordinates = new DoubleMatrix(new double[,] {
|
---|
| 155 | { 100, 100 }, { 100, 200 }, { 100, 300 }, { 100, 400 },
|
---|
| 156 | { 200, 100 }, { 200, 200 }, { 200, 300 }, { 200, 400 },
|
---|
| 157 | { 300, 100 }, { 300, 200 }, { 300, 300 }, { 300, 400 },
|
---|
| 158 | { 400, 100 }, { 400, 200 }, { 400, 300 }, { 400, 400 }
|
---|
| 159 | });
|
---|
| 160 |
|
---|
[2865] | 161 | creator.PermutationParameter.ActualName = "TSPTour";
|
---|
| 162 | evaluator.QualityParameter.ActualName = "TSPTourLength";
|
---|
[2975] | 163 | ParameterizeSolutionCreator();
|
---|
| 164 | ParameterizeEvaluator();
|
---|
[2865] | 165 |
|
---|
[4098] | 166 | InitializeOperators();
|
---|
| 167 | AttachEventHandlers();
|
---|
[2975] | 168 | }
|
---|
[2891] | 169 |
|
---|
[2975] | 170 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[3159] | 171 | TravelingSalesmanProblem clone = (TravelingSalesmanProblem)base.Clone(cloner);
|
---|
[4098] | 172 | clone.operators = operators.Select(x => (IOperator)cloner.Clone(x)).ToList();
|
---|
[3430] | 173 | clone.DistanceMatrixParameter.Value = DistanceMatrixParameter.Value;
|
---|
[4098] | 174 | clone.AttachEventHandlers();
|
---|
[2975] | 175 | return clone;
|
---|
[2805] | 176 | }
|
---|
[2796] | 177 |
|
---|
[2975] | 178 | #region Events
|
---|
| 179 | public event EventHandler SolutionCreatorChanged;
|
---|
| 180 | private void OnSolutionCreatorChanged() {
|
---|
[3739] | 181 | EventHandler handler = SolutionCreatorChanged;
|
---|
| 182 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2865] | 183 | }
|
---|
[2975] | 184 | public event EventHandler EvaluatorChanged;
|
---|
| 185 | private void OnEvaluatorChanged() {
|
---|
[3739] | 186 | EventHandler handler = EvaluatorChanged;
|
---|
| 187 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2975] | 188 | }
|
---|
| 189 | public event EventHandler OperatorsChanged;
|
---|
| 190 | private void OnOperatorsChanged() {
|
---|
[3739] | 191 | EventHandler handler = OperatorsChanged;
|
---|
| 192 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2975] | 193 | }
|
---|
[3739] | 194 | public event EventHandler Reset;
|
---|
| 195 | private void OnReset() {
|
---|
| 196 | EventHandler handler = Reset;
|
---|
| 197 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 198 | }
|
---|
[2975] | 199 |
|
---|
| 200 | private void CoordinatesParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 201 | Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(Coordinates_ItemChanged);
|
---|
| 202 | Coordinates.Reset += new EventHandler(Coordinates_Reset);
|
---|
| 203 | ParameterizeSolutionCreator();
|
---|
[3066] | 204 | ClearDistanceMatrix();
|
---|
[2975] | 205 | }
|
---|
| 206 | private void Coordinates_ItemChanged(object sender, EventArgs<int, int> e) {
|
---|
[3066] | 207 | ClearDistanceMatrix();
|
---|
[2975] | 208 | }
|
---|
| 209 | private void Coordinates_Reset(object sender, EventArgs e) {
|
---|
| 210 | ParameterizeSolutionCreator();
|
---|
[3066] | 211 | ClearDistanceMatrix();
|
---|
[2975] | 212 | }
|
---|
[2865] | 213 | private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
[2975] | 214 | SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
|
---|
| 215 | ParameterizeSolutionCreator();
|
---|
| 216 | ParameterizeEvaluator();
|
---|
[4623] | 217 | ParameterizeAnalyzers();
|
---|
[2975] | 218 | ParameterizeOperators();
|
---|
[2865] | 219 | OnSolutionCreatorChanged();
|
---|
| 220 | }
|
---|
[2975] | 221 | private void SolutionCreator_PermutationParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 222 | ParameterizeEvaluator();
|
---|
[4623] | 223 | ParameterizeAnalyzers();
|
---|
[2975] | 224 | ParameterizeOperators();
|
---|
| 225 | }
|
---|
[2865] | 226 | private void EvaluatorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
[3139] | 227 | Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
[2975] | 228 | ParameterizeEvaluator();
|
---|
[3209] | 229 | UpdateMoveEvaluators();
|
---|
[4623] | 230 | ParameterizeAnalyzers();
|
---|
[3066] | 231 | ClearDistanceMatrix();
|
---|
[2865] | 232 | OnEvaluatorChanged();
|
---|
| 233 | }
|
---|
[3139] | 234 | private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
[4623] | 235 | ParameterizeAnalyzers();
|
---|
[3139] | 236 | }
|
---|
[3232] | 237 | private void MoveGenerator_InversionMoveParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 238 | string name = ((ILookupParameter<InversionMove>)sender).ActualName;
|
---|
| 239 | foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>()) {
|
---|
| 240 | op.InversionMoveParameter.ActualName = name;
|
---|
[3074] | 241 | }
|
---|
| 242 | }
|
---|
[3232] | 243 | private void MoveGenerator_TranslocationMoveParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 244 | string name = ((ILookupParameter<TranslocationMove>)sender).ActualName;
|
---|
| 245 | foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>()) {
|
---|
| 246 | op.TranslocationMoveParameter.ActualName = name;
|
---|
[3074] | 247 | }
|
---|
| 248 | }
|
---|
[2975] | 249 | #endregion
|
---|
[2865] | 250 |
|
---|
[2975] | 251 | #region Helpers
|
---|
[2986] | 252 | [StorableHook(HookType.AfterDeserialization)]
|
---|
[4118] | 253 | private void AfterDeserializationHook() {
|
---|
| 254 | // BackwardsCompatibility3.3
|
---|
| 255 | #region Backwards compatible code (remove with 3.4)
|
---|
| 256 | if (operators == null) InitializeOperators();
|
---|
| 257 | #endregion
|
---|
| 258 | AttachEventHandlers();
|
---|
| 259 | }
|
---|
| 260 |
|
---|
[4098] | 261 | private void AttachEventHandlers() {
|
---|
[2975] | 262 | CoordinatesParameter.ValueChanged += new EventHandler(CoordinatesParameter_ValueChanged);
|
---|
| 263 | Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(Coordinates_ItemChanged);
|
---|
| 264 | Coordinates.Reset += new EventHandler(Coordinates_Reset);
|
---|
| 265 | SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged);
|
---|
| 266 | SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
|
---|
| 267 | EvaluatorParameter.ValueChanged += new EventHandler(EvaluatorParameter_ValueChanged);
|
---|
[3139] | 268 | Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
[2865] | 269 | }
|
---|
[3139] | 270 |
|
---|
[3099] | 271 | private void InitializeOperators() {
|
---|
[3616] | 272 | operators = new List<IOperator>();
|
---|
[3663] | 273 | operators.Add(new BestTSPSolutionAnalyzer());
|
---|
[4623] | 274 | operators.Add(new TSPAlleleFrequencyAnalyzer());
|
---|
| 275 | ParameterizeAnalyzers();
|
---|
[3616] | 276 | operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>().Cast<IOperator>());
|
---|
[3199] | 277 | ParameterizeOperators();
|
---|
[3209] | 278 | UpdateMoveEvaluators();
|
---|
[3099] | 279 | InitializeMoveGenerators();
|
---|
| 280 | }
|
---|
| 281 | private void InitializeMoveGenerators() {
|
---|
[3232] | 282 | foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>()) {
|
---|
[3099] | 283 | if (op is IMoveGenerator) {
|
---|
[3232] | 284 | op.InversionMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_InversionMoveParameter_ActualNameChanged);
|
---|
[3099] | 285 | }
|
---|
| 286 | }
|
---|
[3232] | 287 | foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>()) {
|
---|
[3099] | 288 | if (op is IMoveGenerator) {
|
---|
[3232] | 289 | op.TranslocationMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_TranslocationMoveParameter_ActualNameChanged);
|
---|
[3099] | 290 | }
|
---|
| 291 | }
|
---|
| 292 | }
|
---|
[3209] | 293 | private void UpdateMoveEvaluators() {
|
---|
[4047] | 294 | operators.RemoveAll(x => x is ISingleObjectiveMoveEvaluator);
|
---|
[3303] | 295 | foreach (ITSPPathMoveEvaluator op in ApplicationManager.Manager.GetInstances<ITSPPathMoveEvaluator>())
|
---|
| 296 | if (op.EvaluatorType == Evaluator.GetType()) {
|
---|
| 297 | operators.Add(op);
|
---|
| 298 | }
|
---|
| 299 | ParameterizeOperators();
|
---|
| 300 | OnOperatorsChanged();
|
---|
[3209] | 301 | }
|
---|
[2975] | 302 | private void ParameterizeSolutionCreator() {
|
---|
[3048] | 303 | SolutionCreator.LengthParameter.Value = new IntValue(Coordinates.Rows);
|
---|
[3231] | 304 | SolutionCreator.PermutationTypeParameter.Value = new PermutationType(PermutationTypes.RelativeUndirected);
|
---|
[2865] | 305 | }
|
---|
[2975] | 306 | private void ParameterizeEvaluator() {
|
---|
| 307 | if (Evaluator is ITSPPathEvaluator)
|
---|
| 308 | ((ITSPPathEvaluator)Evaluator).PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
[3066] | 309 | if (Evaluator is ITSPCoordinatesPathEvaluator) {
|
---|
| 310 | ITSPCoordinatesPathEvaluator evaluator = (ITSPCoordinatesPathEvaluator)Evaluator;
|
---|
| 311 | evaluator.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
|
---|
| 312 | evaluator.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
|
---|
| 313 | evaluator.UseDistanceMatrixParameter.ActualName = UseDistanceMatrixParameter.Name;
|
---|
| 314 | }
|
---|
[2865] | 315 | }
|
---|
[4623] | 316 | private void ParameterizeAnalyzers() {
|
---|
[4641] | 317 | if (BestTSPSolutionAnalyzer != null) {
|
---|
| 318 | BestTSPSolutionAnalyzer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
|
---|
| 319 | BestTSPSolutionAnalyzer.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
|
---|
| 320 | BestTSPSolutionAnalyzer.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
| 321 | BestTSPSolutionAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
| 322 | BestTSPSolutionAnalyzer.BestKnownQualityParameter.ActualName = BestKnownQualityParameter.Name;
|
---|
| 323 | BestTSPSolutionAnalyzer.BestKnownSolutionParameter.ActualName = BestKnownSolutionParameter.Name;
|
---|
| 324 | BestTSPSolutionAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
| 325 | }
|
---|
[4623] | 326 |
|
---|
[4641] | 327 | if (TSPAlleleFrequencyAnalyzer != null) {
|
---|
| 328 | TSPAlleleFrequencyAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
| 329 | TSPAlleleFrequencyAnalyzer.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
|
---|
| 330 | TSPAlleleFrequencyAnalyzer.SolutionParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
| 331 | TSPAlleleFrequencyAnalyzer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
|
---|
| 332 | TSPAlleleFrequencyAnalyzer.BestKnownSolutionParameter.ActualName = BestKnownSolutionParameter.Name;
|
---|
| 333 | TSPAlleleFrequencyAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
| 334 | }
|
---|
[3107] | 335 | }
|
---|
[2975] | 336 | private void ParameterizeOperators() {
|
---|
| 337 | foreach (IPermutationCrossover op in Operators.OfType<IPermutationCrossover>()) {
|
---|
| 338 | op.ParentsParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
| 339 | op.ChildParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
| 340 | }
|
---|
| 341 | foreach (IPermutationManipulator op in Operators.OfType<IPermutationManipulator>()) {
|
---|
| 342 | op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
| 343 | }
|
---|
[3074] | 344 | foreach (IPermutationMoveOperator op in Operators.OfType<IPermutationMoveOperator>()) {
|
---|
| 345 | op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
| 346 | }
|
---|
| 347 | foreach (ITSPPathMoveEvaluator op in Operators.OfType<ITSPPathMoveEvaluator>()) {
|
---|
| 348 | op.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
|
---|
| 349 | op.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
|
---|
| 350 | op.UseDistanceMatrixParameter.ActualName = UseDistanceMatrixParameter.Name;
|
---|
[3209] | 351 | op.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
|
---|
| 352 | op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
|
---|
[3074] | 353 | }
|
---|
[3340] | 354 | string inversionMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationInversionMoveOperator>().First().InversionMoveParameter.ActualName;
|
---|
| 355 | foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>())
|
---|
| 356 | op.InversionMoveParameter.ActualName = inversionMove;
|
---|
| 357 | string translocationMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationTranslocationMoveOperator>().First().TranslocationMoveParameter.ActualName;
|
---|
| 358 | foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>())
|
---|
| 359 | op.TranslocationMoveParameter.ActualName = translocationMove;
|
---|
[2975] | 360 | }
|
---|
[3074] | 361 |
|
---|
[3066] | 362 | private void ClearDistanceMatrix() {
|
---|
| 363 | DistanceMatrixParameter.Value = null;
|
---|
| 364 | }
|
---|
[2975] | 365 | #endregion
|
---|
[4098] | 366 |
|
---|
| 367 | public void ImportFromTSPLIB(string tspFileName, string optimalTourFileName) {
|
---|
| 368 | TSPLIBParser tspParser = new TSPLIBParser(tspFileName);
|
---|
| 369 | tspParser.Parse();
|
---|
| 370 | Name = tspParser.Name + " TSP (imported from TSPLIB)";
|
---|
| 371 | if (!string.IsNullOrEmpty(tspParser.Comment)) Description = tspParser.Comment;
|
---|
| 372 | Coordinates = new DoubleMatrix(tspParser.Vertices);
|
---|
| 373 | if (tspParser.WeightType == TSPLIBParser.TSPLIBEdgeWeightType.EUC_2D) {
|
---|
| 374 | TSPRoundedEuclideanPathEvaluator evaluator = new TSPRoundedEuclideanPathEvaluator();
|
---|
| 375 | evaluator.QualityParameter.ActualName = "TSPTourLength";
|
---|
| 376 | Evaluator = evaluator;
|
---|
| 377 | } else if (tspParser.WeightType == TSPLIBParser.TSPLIBEdgeWeightType.GEO) {
|
---|
| 378 | TSPGeoPathEvaluator evaluator = new TSPGeoPathEvaluator();
|
---|
| 379 | evaluator.QualityParameter.ActualName = "TSPTourLength";
|
---|
| 380 | Evaluator = evaluator;
|
---|
| 381 | }
|
---|
| 382 | BestKnownQuality = null;
|
---|
| 383 | BestKnownSolution = null;
|
---|
| 384 |
|
---|
| 385 | if (!string.IsNullOrEmpty(optimalTourFileName)) {
|
---|
| 386 | TSPLIBTourParser tourParser = new TSPLIBTourParser(optimalTourFileName);
|
---|
| 387 | tourParser.Parse();
|
---|
| 388 | if (tourParser.Tour.Length != Coordinates.Rows) throw new InvalidDataException("Length of optimal tour is not equal to number of cities.");
|
---|
| 389 | BestKnownSolution = new Permutation(PermutationTypes.RelativeUndirected, tourParser.Tour);
|
---|
| 390 | }
|
---|
| 391 | OnReset();
|
---|
| 392 | }
|
---|
| 393 | public void ImportFromTSPLIB(string tspFileName, string optimalTourFileName, double bestKnownQuality) {
|
---|
| 394 | ImportFromTSPLIB(tspFileName, optimalTourFileName);
|
---|
| 395 | BestKnownQuality = new DoubleValue(bestKnownQuality);
|
---|
| 396 | }
|
---|
[2796] | 397 | }
|
---|
| 398 | }
|
---|