Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDExchange/PotvinPDExchangeMove.cs @ 7906

Last change on this file since 7906 was 7906, checked in by svonolfe, 12 years ago

Fixed issues that prevented the unit tests to pass (#1177)

File size: 4.2 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 HeuristicLab.Core;
23using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
24using HeuristicLab.Encodings.PermutationEncoding;
25using HeuristicLab.Common;
26using System.Collections.Generic;
27using HeuristicLab.Problems.VehicleRouting.Encodings.General;
28using HeuristicLab.Data;
29using HeuristicLab.Problems.VehicleRouting.Interfaces;
30using HeuristicLab.Optimization;
31using System;
32
33namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
34  [Item("PotvinPDExchangeMove", "Item that describes a exchange move on a PDP representation.")]
35  [StorableClass]
36  public class PotvinPDExchangeMove: Item, IVRPMove {
37    [Storable]
38    public IVRPEncoding Individual { get; protected set; }
39   
40    [Storable]
41    public int City { get; protected set; }
42
43    [Storable]
44    public int OldTour { get; protected set; }
45
46    [Storable]
47    public int Tour { get; protected set; }
48
49    [Storable]
50    public int Replaced { get; protected set; }
51   
52    public PotvinPDExchangeMove(): base() {
53      City = -1;
54      Tour = -1;
55
56      Individual = null;
57    }
58
59    public PotvinPDExchangeMove(int city, int oldTour, int tour, int replaced, PotvinEncoding individual) {
60      City = city;
61      OldTour = oldTour;
62      Tour = tour;
63      Replaced = replaced;
64
65      this.Individual = individual.Clone() as PotvinEncoding;
66    }
67
68    [StorableConstructor]
69    protected PotvinPDExchangeMove(bool deserializing) : base(deserializing) { }
70
71    public override IDeepCloneable Clone(Cloner cloner) {
72      return new PotvinPDExchangeMove(this, cloner);
73    }
74
75    protected PotvinPDExchangeMove(PotvinPDExchangeMove original, Cloner cloner)
76      : base(original, cloner) {
77      this.City = original.City;
78      this.OldTour = original.OldTour;
79      this.Tour = original.Tour;
80      this.Replaced = original.Replaced;
81
82      this.Individual = cloner.Clone(Individual) as PotvinEncoding;
83    }
84
85    #region IVRPMove Members
86
87    [ThreadStatic]
88    private static PotvinPDExchangeMoveEvaluator moveEvaluator;
89    public VRPMoveEvaluator GetMoveEvaluator() {
90      if (moveEvaluator == null)
91        moveEvaluator = new PotvinPDExchangeMoveEvaluator();
92
93      return moveEvaluator;
94    }
95
96    [ThreadStatic]
97    private static PotvinPDExchangeMoveMaker moveMaker;
98    public VRPMoveMaker GetMoveMaker() {
99      if (moveMaker == null)
100        moveMaker = new PotvinPDExchangeMoveMaker();
101
102      return moveMaker;
103    }
104
105    [ThreadStatic]
106    private static PotvinPDExchangeMoveTabuMaker tabuMaker;
107    public ITabuMaker GetTabuMaker() {
108      if (tabuMaker == null)
109        tabuMaker = new PotvinPDExchangeMoveTabuMaker();
110
111      return tabuMaker;
112    }
113
114    [ThreadStatic]
115    private static PotvinPDExchangeTabuCriterion tabuChecker;
116    public ITabuChecker GetTabuChecker() {
117      if (tabuChecker == null) {
118        tabuChecker = new PotvinPDExchangeTabuCriterion();
119        tabuChecker.UseAspirationCriterion.Value = false;
120      }
121
122      return tabuChecker;
123    }
124
125    [ThreadStatic]
126    private static PotvinPDExchangeTabuCriterion softTabuChecker;
127    public ITabuChecker GetSoftTabuChecker() {
128      if (softTabuChecker == null) {
129        softTabuChecker = new PotvinPDExchangeTabuCriterion();
130        softTabuChecker.UseAspirationCriterion.Value = true;
131      }
132
133      return softTabuChecker;
134    }
135
136    #endregion
137  }
138}
Note: See TracBrowser for help on using the repository browser.