Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Tour.cs @ 4697

Last change on this file since 4697 was 4697, checked in by abeham, 13 years ago

#922

  • Removed and sorted usings
File size: 2.9 KB
Line 
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
22using System.Collections.Generic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.VehicleRouting.Encodings {
29  [StorableClass]
30  public class Tour : Item {
31    [Storable]
32    public List<int> Cities { get; private set; }
33
34    [StorableConstructor]
35    protected Tour(bool deserializing) : base(deserializing) { }
36    protected Tour(Tour original, Cloner cloner)
37      : base(original, cloner) {
38      Cities = new List<int>(original.Cities);
39    }
40    public Tour() {
41      Cities = new List<int>();
42    }
43
44    public override IDeepCloneable Clone(Cloner cloner) {
45      return new Tour(this, cloner);
46    }
47
48    public bool Feasible(DoubleArray dueTimeArray,
49      DoubleArray serviceTimeArray, DoubleArray readyTimeArray, DoubleArray demandArray, DoubleValue capacity,
50      DoubleMatrix coordinates, ILookupParameter<DoubleMatrix> distanceMatrix, BoolValue useDistanceMatrix) {
51      TourEvaluation eval = VRPEvaluator.EvaluateTour(this,
52        dueTimeArray,
53        serviceTimeArray,
54        readyTimeArray,
55        demandArray,
56        capacity,
57        new DoubleValue(0),
58        new DoubleValue(0),
59        new DoubleValue(0),
60        new DoubleValue(1),
61        new DoubleValue(1),
62        coordinates,
63        distanceMatrix,
64        useDistanceMatrix);
65
66      return eval.Overload < double.Epsilon && eval.Tardiness < double.Epsilon;
67    }
68
69    public double GetLength(DoubleMatrix coordinates,
70      ILookupParameter<DoubleMatrix> distanceMatrix,
71      BoolValue useDistanceMatrix) {
72      double length = 0;
73
74      if (Cities.Count > 0) {
75        List<int> cities = new List<int>();
76        cities.Add(0);
77        foreach (int city in Cities) {
78          cities.Add(city);
79        }
80        cities.Add(0);
81
82        for (int i = 1; i < cities.Count; i++) {
83          length += VRPUtilities.GetDistance(
84            cities[i - 1], cities[i], coordinates, distanceMatrix, useDistanceMatrix);
85        }
86      }
87
88      return length;
89    }
90  }
91}
Note: See TracBrowser for help on using the repository browser.