Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DynamicVehicleRouting/HeuristicLab.PDPSimulation/3.3/Operators/Moves/Exchange/PotvinPDExchangeMoveGenerator.cs @ 8670

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

Added first version of the dynamic vehicle routing addon (#1955)

File size: 3.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 System;
23using HeuristicLab.Core;
24using HeuristicLab.Optimization;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26using HeuristicLab.Parameters;
27using System.Collections.Generic;
28using HeuristicLab.Problems.VehicleRouting.Interfaces;
29using HeuristicLab.Common;
30using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
31
32namespace HeuristicLab.PDPSimulation.Operators {
33  [Item("DynPotvinPDExchangeMoveGenerator", "Generates exchange moves from a given PDP encoding.")]
34  [StorableClass]
35  public abstract class DynPotvinPDExchangeMoveGenerator : PotvinMoveGenerator, IDynPotvinPDExchangeMoveOperator {
36    public ILookupParameter<DynPotvinPDExchangeMove> PDExchangeMoveParameter {
37      get { return (ILookupParameter<DynPotvinPDExchangeMove>)Parameters["DynPotvinPDExchangeMove"]; }
38    }
39
40    public override ILookupParameter VRPMoveParameter {
41      get { return PDExchangeMoveParameter; }
42    }
43
44    protected ScopeParameter CurrentScopeParameter {
45      get { return (ScopeParameter)Parameters["CurrentScope"]; }
46    }
47
48    [StorableConstructor]
49    protected DynPotvinPDExchangeMoveGenerator(bool deserializing) : base(deserializing) { }
50
51    public DynPotvinPDExchangeMoveGenerator()
52      : base() {
53        Parameters.Add(new LookupParameter<DynPotvinPDExchangeMove>("DynPotvinPDExchangeMove", "The moves that should be generated in subscopes."));
54        Parameters.Add(new ScopeParameter("CurrentScope", "The current scope where the moves should be added as subscopes."));
55    }
56
57    protected DynPotvinPDExchangeMoveGenerator(DynPotvinPDExchangeMoveGenerator original, Cloner cloner)
58      : base(original, cloner) {
59    }
60
61    protected abstract DynPotvinPDExchangeMove[] GenerateMoves(PotvinEncoding individual, IVRPProblemInstance problemInstance);
62
63    public override IOperation Apply() {
64      IOperation next = base.Apply();
65
66      PotvinEncoding individual = VRPToursParameter.ActualValue as PotvinEncoding;
67      DynPotvinPDExchangeMove[] moves = GenerateMoves(individual, ProblemInstance);
68      Scope[] moveScopes = new Scope[moves.Length];
69      for (int i = 0; i < moveScopes.Length; i++) {
70        moveScopes[i] = new Scope(i.ToString());
71        moveScopes[i].Variables.Add(new Variable(PDExchangeMoveParameter.ActualName, moves[i]));
72      }
73      CurrentScopeParameter.ActualValue.SubScopes.AddRange(moveScopes);
74
75      return next;
76    }
77  }
78}
Note: See TracBrowser for help on using the repository browser.