Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Prins/Manipulators/PrinsStochasticLSManipulator.cs @ 4352

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

Merged r4351 of the VRP feature branch into trunk (#1039)

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 HeuristicLab.Core;
23using HeuristicLab.Encodings.PermutationEncoding;
24using HeuristicLab.Parameters;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26using HeuristicLab.Data;
27using System.Collections.Generic;
28
29namespace HeuristicLab.Problems.VehicleRouting.Encodings.Prins {
30  [Item("PrinsStochasticLSManipulator", "An operator which manipulates a VRP representation by using the stochastic version of the Prins local search.  It is implemented as described in Prins, C. (2004). A simple and effective evolutionary algorithm for the vehicle routing problem. Computers & Operations Research, 12:1985-2002.")]
31  [StorableClass]
32  public sealed class PrinsStochasticLSManipulator : PrinsLSManipulator {
33    public IValueParameter<IntValue> SampleSize {
34      get { return (IValueParameter<IntValue>)Parameters["SampleSize"]; }
35    }
36   
37    [StorableConstructor]
38    private PrinsStochasticLSManipulator(bool deserializing) : base(deserializing) { }
39
40    public PrinsStochasticLSManipulator()
41      : base() {
42        Parameters.Add(new ValueParameter<IntValue>("SampleSize", "The sample size.", new IntValue(200)));
43    }
44
45    protected override void Manipulate(IRandom random, PrinsEncoding individual) {
46      List<Tour> tours = individual.GetTours(DistanceMatrixParameter);
47      bool improvement = false;
48      int iterations = 0;
49
50      do {
51        improvement = false;
52        double originalQuality = GetQuality(individual);
53        PrinsEncoding child = null;
54
55        int samples = 0;
56        while (!improvement &&
57          samples < SampleSize.Value.Value) {
58            int u = random.Next(Cities);
59            int v = random.Next(Cities);
60
61            child = Manipulate(individual,
62                  originalQuality, u, v);
63
64            improvement = child != null;
65
66            samples++;
67        }
68
69        if (improvement) {
70          for (int i = 0; i < child.Length; i++) {
71            individual[i] = child[i];
72          }
73        }
74
75        iterations++;
76      } while (improvement &&
77        iterations < Iterations.Value.Value);
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.