Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5130 was 5130, checked in by svonolfe, 13 years ago

Fixed serialization of some VRP move operators (#1346)

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    [Storable]
38    private TranslocationMoveGenerator generator = new StochasticTranslocationSingleMoveGenerator();
39   
40    public ILookupParameter<TranslocationMove> TranslocationMoveParameter {
41      get {
42         return generator.TranslocationMoveParameter;
43      }
44    }
45
46    public override ILookupParameter VRPMoveParameter {
47      get { return TranslocationMoveParameter; }
48    }
49
50    public ILookupParameter<Permutation> PermutationParameter {
51      get {
52        return generator.PermutationParameter;
53      }
54    }
55
56    public IValueLookupParameter<IntValue> SampleSizeParameter {
57      get { return (IValueLookupParameter<IntValue>)Parameters["SampleSize"]; }
58    }
59
60    [StorableConstructor]
61    private AlbaStochasticTranslocationSingleMoveGenerator(bool deserializing) : base(deserializing) { }
62
63    public AlbaStochasticTranslocationSingleMoveGenerator()
64      : base() {
65    }
66
67    public override IDeepCloneable Clone(Cloner cloner) {
68      return new AlbaStochasticTranslocationSingleMoveGenerator(this, cloner);
69    }
70
71    private AlbaStochasticTranslocationSingleMoveGenerator(AlbaStochasticTranslocationSingleMoveGenerator original, Cloner cloner)
72      : base(original, cloner) {
73    }
74
75    public override IOperation Apply() {
76      IOperation next = base.Apply();
77
78      IVRPEncoding solution = VRPToursParameter.ActualValue;
79
80      generator.PermutationParameter.ActualName = VRPToursParameter.ActualName;
81      IAtomicOperation op = this.ExecutionContext.CreateChildOperation(generator);
82      op.Operator.Execute((IExecutionContext)op);
83
84      foreach (IScope scope in this.ExecutionContext.Scope.SubScopes) {
85        IVariable moveVariable = scope.Variables[
86          TranslocationMoveParameter.ActualName];
87
88        if (moveVariable.Value is TranslocationMove &&
89          !(moveVariable.Value is AlbaTranslocationMove)) {
90          TranslocationMove move = moveVariable.Value as TranslocationMove;
91          moveVariable.Value =
92            new AlbaTranslocationMove(
93              move.Index1, move.Index2, move.Index3, solution as AlbaEncoding);
94        }
95      }
96
97      return next;
98    }
99  }
100}
Note: See TracBrowser for help on using the repository browser.