Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Moves/ThreeOpt/AlbaStochasticTranslocationSingleMoveGenerator.cs @ 5119

Last change on this file since 5119 was 4752, checked in by svonolfe, 14 years ago

Merged relevant changes from the trunk into the branch (cloning,...) (#1177)

File size: 3.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.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Encodings.PermutationEncoding;
26using HeuristicLab.Optimization;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HeuristicLab.Problems.VehicleRouting.Interfaces;
30using HeuristicLab.Problems.VehicleRouting.Encodings.General;
31using HeuristicLab.Common;
32
33namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
34  [Item("AlbaStochasticTranslocationSingleMoveGenerator", "An operator which generates a single translocation move for a VRP representation.  It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]
35  [StorableClass]
36  public sealed class AlbaStochasticTranslocationSingleMoveGenerator : AlbaMoveGenerator, IAlbaTranslocationMoveOperator, IMultiVRPMoveGenerator {
37    private TranslocationMoveGenerator generator = new StochasticTranslocationSingleMoveGenerator();
38   
39    public ILookupParameter<TranslocationMove> TranslocationMoveParameter {
40      get {
41         return generator.TranslocationMoveParameter;
42      }
43    }
44
45    public override ILookupParameter VRPMoveParameter {
46      get { return TranslocationMoveParameter; }
47    }
48
49    public ILookupParameter<Permutation> PermutationParameter {
50      get {
51        return generator.PermutationParameter;
52      }
53    }
54
55    public IValueLookupParameter<IntValue> SampleSizeParameter {
56      get { return (IValueLookupParameter<IntValue>)Parameters["SampleSize"]; }
57    }
58
59    [StorableConstructor]
60    private AlbaStochasticTranslocationSingleMoveGenerator(bool deserializing) : base(deserializing) { }
61
62    public AlbaStochasticTranslocationSingleMoveGenerator()
63      : base() {
64    }
65
66    public override IDeepCloneable Clone(Cloner cloner) {
67      return new AlbaStochasticTranslocationSingleMoveGenerator(this, cloner);
68    }
69
70    private AlbaStochasticTranslocationSingleMoveGenerator(AlbaStochasticTranslocationSingleMoveGenerator original, Cloner cloner)
71      : base(original, cloner) {
72    }
73
74    public override IOperation Apply() {
75      IOperation next = base.Apply();
76
77      IVRPEncoding solution = VRPToursParameter.ActualValue;
78
79      generator.PermutationParameter.ActualName = VRPToursParameter.ActualName;
80      IAtomicOperation op = this.ExecutionContext.CreateChildOperation(generator);
81      op.Operator.Execute((IExecutionContext)op);
82
83      foreach (IScope scope in this.ExecutionContext.Scope.SubScopes) {
84        IVariable moveVariable = scope.Variables[
85          TranslocationMoveParameter.ActualName];
86
87        if (moveVariable.Value is TranslocationMove &&
88          !(moveVariable.Value is AlbaTranslocationMove)) {
89          TranslocationMove move = moveVariable.Value as TranslocationMove;
90          moveVariable.Value =
91            new AlbaTranslocationMove(
92              move.Index1, move.Index2, move.Index3, solution as AlbaEncoding);
93        }
94      }
95
96      return next;
97    }
98  }
99}
Note: See TracBrowser for help on using the repository browser.