[11186] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11186] | 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;
|
---|
[11245] | 23 | using System.IO;
|
---|
[11190] | 24 | using System.Linq;
|
---|
[11186] | 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
[11187] | 27 | using HeuristicLab.Data;
|
---|
[11186] | 28 | using HeuristicLab.Encodings.IntegerVectorEncoding;
|
---|
| 29 | using HeuristicLab.Optimization;
|
---|
[11187] | 30 | using HeuristicLab.Parameters;
|
---|
[11186] | 31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[11189] | 32 | using HeuristicLab.Problems.Instances;
|
---|
[11261] | 33 | using HeuristicLab.Problems.Instances.Types;
|
---|
[11186] | 34 |
|
---|
| 35 | namespace HeuristicLab.Problems.Orienteering {
|
---|
[13173] | 36 | [Item("Orienteering Problem (OP)", "Represents a single-objective Orienteering Problem.")]
|
---|
[12721] | 37 | [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 115)]
|
---|
[11186] | 38 | [StorableClass]
|
---|
[11307] | 39 | public sealed class OrienteeringProblem
|
---|
[11321] | 40 | : SingleObjectiveHeuristicOptimizationProblem<IOrienteeringEvaluator, IOrienteeringSolutionCreator>,
|
---|
[11277] | 41 | IStorableContent, IProblemInstanceConsumer<OPData>, IProblemInstanceConsumer<TSPData>, IProblemInstanceConsumer<CVRPData> {
|
---|
[11186] | 42 |
|
---|
| 43 | public string Filename { get; set; }
|
---|
| 44 |
|
---|
[11187] | 45 | #region Parameter Properties
|
---|
[11316] | 46 | public OptionalValueParameter<DoubleMatrix> CoordinatesParameter {
|
---|
| 47 | get { return (OptionalValueParameter<DoubleMatrix>)Parameters["Coordinates"]; }
|
---|
[11187] | 48 | }
|
---|
[11325] | 49 | public IValueParameter<DistanceMatrix> DistanceMatrixParameter {
|
---|
| 50 | get { return (IValueParameter<DistanceMatrix>)Parameters["DistanceMatrix"]; }
|
---|
[11187] | 51 | }
|
---|
| 52 |
|
---|
[11325] | 53 | public IFixedValueParameter<IntValue> StartingPointParameter {
|
---|
| 54 | get { return (IFixedValueParameter<IntValue>)Parameters["StartingPoint"]; }
|
---|
[11187] | 55 | }
|
---|
[11325] | 56 | public IFixedValueParameter<IntValue> TerminalPointParameter {
|
---|
| 57 | get { return (IFixedValueParameter<IntValue>)Parameters["TerminalPoint"]; }
|
---|
[11187] | 58 | }
|
---|
[11325] | 59 | public IFixedValueParameter<DoubleValue> MaximumDistanceParameter {
|
---|
| 60 | get { return (IFixedValueParameter<DoubleValue>)Parameters["MaximumDistance"]; }
|
---|
[11187] | 61 | }
|
---|
[11325] | 62 | public IValueParameter<DoubleArray> ScoresParameter {
|
---|
| 63 | get { return (IValueParameter<DoubleArray>)Parameters["Scores"]; }
|
---|
[11187] | 64 | }
|
---|
[11325] | 65 | public IFixedValueParameter<DoubleValue> PointVisitingCostsParameter {
|
---|
| 66 | get { return (IFixedValueParameter<DoubleValue>)Parameters["PointVisitingCosts"]; }
|
---|
[11187] | 67 | }
|
---|
| 68 |
|
---|
| 69 | public OptionalValueParameter<IntegerVector> BestKnownSolutionParameter {
|
---|
| 70 | get { return (OptionalValueParameter<IntegerVector>)Parameters["BestKnownSolution"]; }
|
---|
| 71 | }
|
---|
| 72 | #endregion
|
---|
| 73 |
|
---|
| 74 | #region Properties
|
---|
| 75 | public DoubleMatrix Coordinates {
|
---|
| 76 | get { return CoordinatesParameter.Value; }
|
---|
| 77 | set { CoordinatesParameter.Value = value; }
|
---|
| 78 | }
|
---|
| 79 | public DistanceMatrix DistanceMatrix {
|
---|
| 80 | get { return DistanceMatrixParameter.Value; }
|
---|
| 81 | set { DistanceMatrixParameter.Value = value; }
|
---|
| 82 | }
|
---|
[11325] | 83 | public int StartingPoint {
|
---|
| 84 | get { return StartingPointParameter.Value.Value; }
|
---|
| 85 | set { StartingPointParameter.Value.Value = value; }
|
---|
[11189] | 86 | }
|
---|
[11325] | 87 | public int TerminalPoint {
|
---|
| 88 | get { return TerminalPointParameter.Value.Value; }
|
---|
| 89 | set { TerminalPointParameter.Value.Value = value; }
|
---|
[11189] | 90 | }
|
---|
[11325] | 91 | public double MaximumDistance {
|
---|
| 92 | get { return MaximumDistanceParameter.Value.Value; }
|
---|
| 93 | set { MaximumDistanceParameter.Value.Value = value; }
|
---|
[11187] | 94 | }
|
---|
| 95 | public DoubleArray Scores {
|
---|
| 96 | get { return ScoresParameter.Value; }
|
---|
| 97 | set { ScoresParameter.Value = value; }
|
---|
| 98 | }
|
---|
[11325] | 99 | public double PointVisitingCosts {
|
---|
| 100 | get { return PointVisitingCostsParameter.Value.Value; }
|
---|
| 101 | set { PointVisitingCostsParameter.Value.Value = value; }
|
---|
[11189] | 102 | }
|
---|
[11187] | 103 | public IntegerVector BestKnownSolution {
|
---|
| 104 | get { return BestKnownSolutionParameter.Value; }
|
---|
| 105 | set { BestKnownSolutionParameter.Value = value; }
|
---|
| 106 | }
|
---|
[12721] | 107 | private BestOrienteeringSolutionAnalyzer BestOrienteeringSolutionAnalyser {
|
---|
| 108 | get { return Operators.OfType<BestOrienteeringSolutionAnalyzer>().SingleOrDefault(); }
|
---|
[11190] | 109 | }
|
---|
[11187] | 110 | #endregion
|
---|
| 111 |
|
---|
[11186] | 112 | [StorableConstructor]
|
---|
| 113 | private OrienteeringProblem(bool deserializing)
|
---|
| 114 | : base(deserializing) {
|
---|
| 115 | }
|
---|
| 116 | private OrienteeringProblem(OrienteeringProblem original, Cloner cloner)
|
---|
| 117 | : base(original, cloner) {
|
---|
| 118 | RegisterEventHandlers();
|
---|
| 119 | }
|
---|
| 120 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 121 | return new OrienteeringProblem(this, cloner);
|
---|
| 122 | }
|
---|
| 123 | public OrienteeringProblem()
|
---|
[11191] | 124 | : base(new OrienteeringEvaluator(), new GreedyOrienteeringTourCreator()) {
|
---|
[11316] | 125 | Parameters.Add(new OptionalValueParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the points."));
|
---|
[11191] | 126 | Parameters.Add(new ValueParameter<DistanceMatrix>("DistanceMatrix", "The matrix which contains the distances between the points."));
|
---|
[11325] | 127 | Parameters.Add(new FixedValueParameter<IntValue>("StartingPoint", "Index of the starting point.", new IntValue(0)));
|
---|
| 128 | Parameters.Add(new FixedValueParameter<IntValue>("TerminalPoint", "Index of the ending point.", new IntValue(0)));
|
---|
| 129 | Parameters.Add(new FixedValueParameter<DoubleValue>("MaximumDistance", "The maximum distance constraint for a Orienteering solution."));
|
---|
[11245] | 130 | Parameters.Add(new ValueParameter<DoubleArray>("Scores", "The scores of the points."));
|
---|
[11325] | 131 | Parameters.Add(new FixedValueParameter<DoubleValue>("PointVisitingCosts", "The costs for visiting a point."));
|
---|
[11187] | 132 | Parameters.Add(new OptionalValueParameter<IntegerVector>("BestKnownSolution", "The best known solution of this Orienteering instance."));
|
---|
[11186] | 133 |
|
---|
| 134 | Maximization.Value = true;
|
---|
| 135 | MaximizationParameter.Hidden = true;
|
---|
| 136 |
|
---|
| 137 | SolutionCreator.IntegerVectorParameter.ActualName = "OrienteeringSolution";
|
---|
| 138 |
|
---|
[11190] | 139 | InitializeInitialOrienteeringInstance();
|
---|
[11186] | 140 |
|
---|
| 141 | ParameterizeSolutionCreator();
|
---|
| 142 | ParameterizeEvaluator();
|
---|
| 143 |
|
---|
| 144 | InitializeOperators();
|
---|
| 145 | RegisterEventHandlers();
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[11187] | 148 | #region Events
|
---|
[11186] | 149 | protected override void OnSolutionCreatorChanged() {
|
---|
| 150 | base.OnSolutionCreatorChanged();
|
---|
[11190] | 151 | SolutionCreator.IntegerVectorParameter.ActualNameChanged += SolutionCreator_IntegerVectorParameter_ActualNameChanged;
|
---|
[11186] | 152 | ParameterizeSolutionCreator();
|
---|
| 153 | ParameterizeEvaluator();
|
---|
| 154 | ParameterizeAnalyzer();
|
---|
| 155 | ParameterizeOperators();
|
---|
| 156 | }
|
---|
| 157 | protected override void OnEvaluatorChanged() {
|
---|
| 158 | base.OnEvaluatorChanged();
|
---|
| 159 | ParameterizeEvaluator();
|
---|
| 160 | ParameterizeAnalyzer();
|
---|
| 161 | }
|
---|
| 162 | private void SolutionCreator_IntegerVectorParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 163 | ParameterizeEvaluator();
|
---|
| 164 | ParameterizeAnalyzer();
|
---|
| 165 | ParameterizeOperators();
|
---|
| 166 | }
|
---|
[11190] | 167 | private void CoordinatesParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 168 | if (Coordinates != null) {
|
---|
| 169 | Coordinates.ItemChanged += new EventHandler<EventArgs<int, int>>(CoordinatesValue_ItemChanged);
|
---|
| 170 | Coordinates.Reset += new EventHandler(CoordinatesValue_Reset);
|
---|
| 171 | }
|
---|
| 172 | ParameterizeSolutionCreator();
|
---|
[11269] | 173 | UpdateDistanceMatrix();
|
---|
[11325] | 174 | CheckStartingIndex();
|
---|
| 175 | CheckTerminalIndex();
|
---|
[11190] | 176 | }
|
---|
| 177 | private void CoordinatesValue_ItemChanged(object sender, EventArgs<int, int> e) {
|
---|
[11269] | 178 | UpdateDistanceMatrix();
|
---|
[11325] | 179 | CheckStartingIndex();
|
---|
| 180 | CheckTerminalIndex();
|
---|
[11190] | 181 | }
|
---|
| 182 | private void CoordinatesValue_Reset(object sender, EventArgs e) {
|
---|
| 183 | ParameterizeSolutionCreator();
|
---|
[11269] | 184 | UpdateDistanceMatrix();
|
---|
[11325] | 185 | CheckStartingIndex();
|
---|
| 186 | CheckTerminalIndex();
|
---|
[11190] | 187 | }
|
---|
[11325] | 188 | private void StartingPointParameterValue_ValueChanged(object sender, EventArgs e) {
|
---|
| 189 | CheckStartingIndex();
|
---|
[11190] | 190 | }
|
---|
| 191 |
|
---|
[11325] | 192 | private void TerminalPointParameterValue_ValueChanged(object sender, EventArgs e) {
|
---|
| 193 | CheckTerminalIndex();
|
---|
[11190] | 194 | }
|
---|
[11325] | 195 | private void MaximumDistanceParameterValue_ValueChanged(object sender, EventArgs e) { }
|
---|
[11190] | 196 | private void ScoresParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 197 | ParameterizeEvaluator();
|
---|
| 198 | ParameterizeAnalyzer();
|
---|
| 199 | ParameterizeSolutionCreator();
|
---|
| 200 |
|
---|
| 201 | ScoresParameter.Value.Reset += new EventHandler(ScoresValue_Reset);
|
---|
| 202 | }
|
---|
| 203 | private void ScoresValue_Reset(object sender, EventArgs e) {
|
---|
| 204 | ParameterizeSolutionCreator();
|
---|
| 205 | }
|
---|
[11325] | 206 | private void PointVisitingCostsParameterValue_ValueChanged(object sender, EventArgs e) { }
|
---|
[11328] | 207 |
|
---|
| 208 | private void BestKnownSolutionParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 209 | if (BestKnownSolution == null)
|
---|
| 210 | BestKnownQuality = null;
|
---|
| 211 | }
|
---|
[11186] | 212 | #endregion
|
---|
| 213 |
|
---|
| 214 | #region Helpers
|
---|
| 215 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 216 | private void AfterDeserialization() {
|
---|
| 217 | RegisterEventHandlers();
|
---|
| 218 | }
|
---|
| 219 |
|
---|
| 220 | private void RegisterEventHandlers() {
|
---|
[11190] | 221 | SolutionCreator.IntegerVectorParameter.ActualNameChanged += SolutionCreator_IntegerVectorParameter_ActualNameChanged;
|
---|
| 222 |
|
---|
| 223 | CoordinatesParameter.ValueChanged += CoordinatesParameter_ValueChanged;
|
---|
| 224 | if (CoordinatesParameter.Value != null) {
|
---|
| 225 | CoordinatesParameter.Value.ItemChanged += CoordinatesValue_ItemChanged;
|
---|
| 226 | CoordinatesParameter.Value.Reset += CoordinatesValue_Reset;
|
---|
| 227 | }
|
---|
| 228 |
|
---|
[11325] | 229 | StartingPointParameter.Value.ValueChanged += StartingPointParameterValue_ValueChanged;
|
---|
| 230 | TerminalPointParameter.Value.ValueChanged += TerminalPointParameterValue_ValueChanged;
|
---|
| 231 | MaximumDistanceParameter.Value.ValueChanged += MaximumDistanceParameterValue_ValueChanged;
|
---|
| 232 | PointVisitingCostsParameter.Value.ValueChanged += PointVisitingCostsParameterValue_ValueChanged;
|
---|
[11190] | 233 |
|
---|
| 234 | ScoresParameter.ValueChanged += ScoresParameter_ValueChanged;
|
---|
| 235 | ScoresParameter.Value.Reset += ScoresValue_Reset;
|
---|
[11328] | 236 |
|
---|
| 237 | BestKnownSolutionParameter.ValueChanged += BestKnownSolutionParameter_ValueChanged;
|
---|
[11186] | 238 | }
|
---|
[11190] | 239 |
|
---|
[11186] | 240 | private void ParameterizeSolutionCreator() {
|
---|
[11321] | 241 | SolutionCreator.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
|
---|
| 242 | SolutionCreator.ScoresParameter.ActualName = ScoresParameter.Name;
|
---|
| 243 | SolutionCreator.MaximumDistanceParameter.ActualName = MaximumDistanceParameter.Name;
|
---|
| 244 | SolutionCreator.StartingPointParameter.ActualName = StartingPointParameter.Name;
|
---|
| 245 | SolutionCreator.TerminalPointParameter.ActualName = TerminalPointParameter.Name;
|
---|
| 246 | SolutionCreator.PointVisitingCostsParameter.ActualName = PointVisitingCostsParameter.Name;
|
---|
[11186] | 247 | }
|
---|
| 248 | private void ParameterizeEvaluator() {
|
---|
[11321] | 249 | Evaluator.IntegerVectorParameter.ActualName = SolutionCreator.IntegerVectorParameter.ActualName;
|
---|
| 250 | Evaluator.ScoresParameter.ActualName = ScoresParameter.Name;
|
---|
| 251 | Evaluator.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
|
---|
| 252 | Evaluator.MaximumDistanceParameter.ActualName = MaximumDistanceParameter.Name;
|
---|
| 253 | Evaluator.PointVisitingCostsParameter.ActualName = PointVisitingCostsParameter.Name;
|
---|
[11186] | 254 | }
|
---|
| 255 | private void ParameterizeAnalyzer() {
|
---|
[11191] | 256 | if (BestOrienteeringSolutionAnalyser != null) {
|
---|
| 257 | BestOrienteeringSolutionAnalyser.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
|
---|
| 258 |
|
---|
| 259 | BestOrienteeringSolutionAnalyser.IntegerVector.ActualName = SolutionCreator.IntegerVectorParameter.ActualName;
|
---|
| 260 | BestOrienteeringSolutionAnalyser.CoordinatesParameter.ActualName = CoordinatesParameter.Name;
|
---|
| 261 | BestOrienteeringSolutionAnalyser.ScoresParameter.ActualName = ScoresParameter.Name;
|
---|
| 262 |
|
---|
| 263 | BestOrienteeringSolutionAnalyser.ResultsParameter.ActualName = "Results";
|
---|
| 264 | BestOrienteeringSolutionAnalyser.BestKnownQualityParameter.ActualName = BestKnownQualityParameter.Name;
|
---|
| 265 | BestOrienteeringSolutionAnalyser.BestKnownSolutionParameter.ActualName = BestKnownSolutionParameter.Name;
|
---|
| 266 | }
|
---|
[11186] | 267 | }
|
---|
| 268 | private void InitializeOperators() {
|
---|
[12721] | 269 | Operators.Add(new BestOrienteeringSolutionAnalyzer());
|
---|
[11191] | 270 | ParameterizeAnalyzer();
|
---|
| 271 |
|
---|
[11303] | 272 | Operators.Add(new OrienteeringLocalImprovementOperator());
|
---|
[11195] | 273 | Operators.Add(new OrienteeringShakingOperator());
|
---|
[11191] | 274 | ParameterizeOperators();
|
---|
[11186] | 275 | }
|
---|
| 276 | private void ParameterizeOperators() {
|
---|
[11194] | 277 | foreach (var op in Operators.OfType<OrienteeringLocalImprovementOperator>()) {
|
---|
[11191] | 278 | op.IntegerVectorParameter.ActualName = SolutionCreator.IntegerVectorParameter.ActualName;
|
---|
[11194] | 279 | op.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
|
---|
| 280 | op.ScoresParameter.ActualName = ScoresParameter.Name;
|
---|
| 281 | op.MaximumDistanceParameter.ActualName = MaximumDistanceParameter.Name;
|
---|
| 282 | op.StartingPointParameter.ActualName = StartingPointParameter.Name;
|
---|
[11319] | 283 | op.TerminalPointParameter.ActualName = TerminalPointParameter.Name;
|
---|
[11320] | 284 | op.PointVisitingCostsParameter.ActualName = PointVisitingCostsParameter.Name;
|
---|
[11194] | 285 | }
|
---|
[11195] | 286 | foreach (var op in Operators.OfType<OrienteeringShakingOperator>()) {
|
---|
[11226] | 287 | op.IntegerVectorParameter.ActualName = SolutionCreator.IntegerVectorParameter.ActualName;
|
---|
| 288 | op.DistanceMatrixParameter.ActualName = DistanceMatrixParameter.Name;
|
---|
| 289 | op.ScoresParameter.ActualName = ScoresParameter.Name;
|
---|
| 290 | op.MaximumDistanceParameter.ActualName = MaximumDistanceParameter.Name;
|
---|
| 291 | op.StartingPointParameter.ActualName = StartingPointParameter.Name;
|
---|
[11319] | 292 | op.TerminalPointParameter.ActualName = TerminalPointParameter.Name;
|
---|
[11320] | 293 | op.PointVisitingCostsParameter.ActualName = PointVisitingCostsParameter.Name;
|
---|
[11195] | 294 | }
|
---|
[11186] | 295 | }
|
---|
| 296 | #endregion
|
---|
| 297 |
|
---|
[11269] | 298 | private DistanceMatrix CalculateDistanceMatrix(double[,] coordinates) {
|
---|
| 299 | var distances = DistanceHelper.GetDistanceMatrix(DistanceMeasure.Euclidean, coordinates, null, coordinates.GetLength(0));
|
---|
| 300 |
|
---|
| 301 | return new DistanceMatrix(distances);
|
---|
| 302 | }
|
---|
| 303 | private void UpdateDistanceMatrix() {
|
---|
[11316] | 304 | if (Coordinates == null) {
|
---|
| 305 | DistanceMatrix = new DistanceMatrix(0, 0);
|
---|
| 306 | return;
|
---|
| 307 | }
|
---|
| 308 |
|
---|
[11269] | 309 | var coordinates = Coordinates;
|
---|
| 310 | int dimension = coordinates.Rows;
|
---|
[11270] | 311 | var distances = new double[dimension, dimension];
|
---|
[11269] | 312 | for (int i = 0; i < dimension - 1; i++) {
|
---|
| 313 | for (int j = i + 1; j < dimension; j++) {
|
---|
| 314 | double x1 = coordinates[i, 0];
|
---|
| 315 | double y1 = coordinates[i, 1];
|
---|
| 316 | double x2 = coordinates[j, 0];
|
---|
| 317 | double y2 = coordinates[j, 1];
|
---|
| 318 | distances[i, j] = Math.Sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
|
---|
| 319 | distances[j, i] = distances[i, j];
|
---|
[11191] | 320 | }
|
---|
| 321 | }
|
---|
[11270] | 322 | DistanceMatrix = new DistanceMatrix(distances);
|
---|
[11191] | 323 | }
|
---|
[11325] | 324 | private void CheckStartingIndex() {
|
---|
| 325 | if (StartingPoint < 0) StartingPoint = 0;
|
---|
| 326 | if (StartingPoint >= DistanceMatrix.Rows) StartingPoint = DistanceMatrix.Rows - 1;
|
---|
| 327 | }
|
---|
| 328 | private void CheckTerminalIndex() {
|
---|
| 329 | if (TerminalPoint < 0) TerminalPoint = 0;
|
---|
| 330 | if (TerminalPoint >= DistanceMatrix.Rows) TerminalPoint = DistanceMatrix.Rows - 1;
|
---|
| 331 | }
|
---|
[11191] | 332 |
|
---|
[11190] | 333 | private void InitializeInitialOrienteeringInstance() {
|
---|
[11269] | 334 | var coordinates = new double[21, 2] {
|
---|
[11190] | 335 | { 4.60, 7.10 }, { 5.70, 11.40 }, { 4.40, 12.30 }, { 2.80, 14.30 }, { 3.20, 10.30 },
|
---|
| 336 | { 3.50, 9.80 }, { 4.40, 8.40 }, { 7.80, 11.00 }, { 8.80, 9.80 }, { 7.70, 8.20 },
|
---|
| 337 | { 6.30, 7.90 }, { 5.40, 8.20 }, { 5.80, 6.80 }, { 6.70, 5.80 }, { 13.80, 13.10 },
|
---|
| 338 | { 14.10, 14.20 }, { 11.20, 13.60 }, { 9.70, 16.40 }, { 9.50, 18.80 }, { 4.70, 16.80 },
|
---|
| 339 | { 5.00, 5.60 }
|
---|
[11269] | 340 | };
|
---|
| 341 | Coordinates = new DoubleMatrix(coordinates);
|
---|
| 342 | DistanceMatrix = CalculateDistanceMatrix(coordinates);
|
---|
[11190] | 343 |
|
---|
[11325] | 344 | StartingPoint = 0;
|
---|
| 345 | TerminalPoint = 20;
|
---|
| 346 | MaximumDistance = 30;
|
---|
[11190] | 347 |
|
---|
| 348 | Scores = new DoubleArray(new double[21] { 0, 20, 20, 30, 15, 15, 10, 20, 20, 20, 15, 10, 10, 25, 40, 40, 30, 30, 50, 30, 0 });
|
---|
[11186] | 349 | }
|
---|
[11189] | 350 |
|
---|
[11325] | 351 | #region Instance consuming
|
---|
[11277] | 352 | public void Load(OPData data) {
|
---|
| 353 | if (data.Coordinates == null && data.Distances == null)
|
---|
| 354 | throw new InvalidDataException("The given instance specifies no coordinates or distance matrix!");
|
---|
| 355 | if (data.Coordinates != null && data.Coordinates.GetLength(1) != 2)
|
---|
[11245] | 356 | throw new InvalidDataException("The coordinates of the given instance are not in the right format, there need to be one row for each customer and two columns for the x and y coordinates.");
|
---|
| 357 |
|
---|
| 358 | // Clear old solutions
|
---|
| 359 | BestKnownSolution = null;
|
---|
| 360 |
|
---|
[11189] | 361 | Name = data.Name;
|
---|
| 362 | Description = data.Description;
|
---|
| 363 |
|
---|
[11277] | 364 | Coordinates = data.Coordinates != null ? new DoubleMatrix(data.Coordinates) : null;
|
---|
| 365 | if (data.Distances != null)
|
---|
| 366 | DistanceMatrix = new DistanceMatrix(data.Distances);
|
---|
| 367 | else
|
---|
| 368 | DistanceMatrix = new DistanceMatrix(data.GetDistanceMatrix());
|
---|
[11245] | 369 |
|
---|
[11325] | 370 | StartingPoint = data.StartingPoint;
|
---|
| 371 | TerminalPoint = data.TerminalPoint;
|
---|
[11189] | 372 |
|
---|
[11325] | 373 | PointVisitingCosts = data.PointVisitingCosts;
|
---|
| 374 | MaximumDistance = data.MaximumDistance;
|
---|
[11277] | 375 | Scores = new DoubleArray(data.Scores);
|
---|
[11189] | 376 | }
|
---|
[11261] | 377 |
|
---|
[11277] | 378 | public void Load(TSPData data) {
|
---|
| 379 | if (data.Coordinates == null && data.Distances == null)
|
---|
| 380 | throw new InvalidDataException("The given instance specifies no coordinates or distance matrix!");
|
---|
| 381 | if (data.Coordinates != null && data.Coordinates.GetLength(1) != 2)
|
---|
[11261] | 382 | throw new InvalidDataException("The coordinates of the given instance are not in the right format, there need to be one row for each customer and two columns for the x and y coordinates.");
|
---|
| 383 |
|
---|
| 384 | // Clear old solutions
|
---|
| 385 | BestKnownSolution = null;
|
---|
| 386 |
|
---|
| 387 | Name = data.Name;
|
---|
| 388 | Description = data.Description;
|
---|
| 389 |
|
---|
[11277] | 390 | Coordinates = data.Coordinates != null ? new DoubleMatrix(data.Coordinates) : null;
|
---|
[11261] | 391 | if (data.Distances != null)
|
---|
| 392 | DistanceMatrix = new DistanceMatrix(data.Distances);
|
---|
| 393 | else
|
---|
[11277] | 394 | DistanceMatrix = new DistanceMatrix(data.GetDistanceMatrix());
|
---|
[11261] | 395 |
|
---|
[11325] | 396 | StartingPoint = 0; // First city is interpreted as start point
|
---|
| 397 | TerminalPoint = data.Dimension - 1; // Last city is interpreted als end point
|
---|
[11261] | 398 |
|
---|
[11325] | 399 | PointVisitingCosts = 0;
|
---|
| 400 | MaximumDistance = DistanceMatrix.Average() * 5.0; // distance from start to end first to last city is interpreted as maximum distance
|
---|
[11277] | 401 | Scores = new DoubleArray(Enumerable.Repeat(1.0, data.Dimension).ToArray()); // all scores are 1
|
---|
[11261] | 402 | }
|
---|
[11277] | 403 |
|
---|
| 404 | public void Load(CVRPData data) {
|
---|
| 405 | if (data.Coordinates == null && data.Distances == null)
|
---|
| 406 | throw new InvalidDataException("The given instance specifies no coordinates or distance matrix!");
|
---|
| 407 | if (data.Coordinates != null && data.Coordinates.GetLength(1) != 2)
|
---|
| 408 | throw new InvalidDataException("The coordinates of the given instance are not in the right format, there need to be one row for each customer and two columns for the x and y coordinates.");
|
---|
| 409 |
|
---|
| 410 | // Clear old solutions
|
---|
| 411 | BestKnownSolution = null;
|
---|
| 412 |
|
---|
| 413 | Name = data.Name;
|
---|
| 414 | Description = data.Description;
|
---|
| 415 |
|
---|
| 416 | Coordinates = data.Coordinates != null ? new DoubleMatrix(data.Coordinates) : null;
|
---|
| 417 | DistanceMatrix = data.Distances != null
|
---|
| 418 | ? new DistanceMatrix(data.Distances)
|
---|
| 419 | : CalculateDistanceMatrix(data.Coordinates);
|
---|
| 420 |
|
---|
[11325] | 421 | StartingPoint = 0; // Depot is interpreted as start point
|
---|
| 422 | TerminalPoint = 0; // Depot is interpreted als end point
|
---|
[11277] | 423 |
|
---|
[11325] | 424 | PointVisitingCosts = 0;
|
---|
| 425 | MaximumDistance = data.Capacity * 2; // capacity is interpreted as max distance
|
---|
[11277] | 426 | Scores = new DoubleArray(data.Demands); // demands are interpreted as scores
|
---|
| 427 | }
|
---|
[11325] | 428 | #endregion
|
---|
[11186] | 429 | }
|
---|
| 430 | } |
---|