Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Zhu/Crossovers/ZhuMergeCrossover2.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.7 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.Zhu {
30  [Item("ZhuMergeCrossover2", "The Zhu Merge Crossover (Version 2).  It is implemented as described in Zhu, K.Q. (2000). A New Genetic Algorithm For VRPTW. Proceedings of the International Conference on Artificial Intelligence.")]
31  [StorableClass]
32  public sealed class ZhuMergeCrossover2 : ZhuCrossover {   
33    [StorableConstructor]
34    private ZhuMergeCrossover2(bool deserializing) : base(deserializing) { }
35
36    public ZhuMergeCrossover2()
37      : base() {
38    }
39
40    protected override ZhuEncoding Crossover(IRandom random, ZhuEncoding parent1, ZhuEncoding parent2) {
41      List<int> p1 = new List<int>(parent1);
42      List<int> p2 = new List<int>(parent2);
43
44      ZhuEncoding child = parent2.Clone() as ZhuEncoding;
45
46      int breakPoint = random.Next(child.Length);
47      int i = breakPoint;
48
49      int parent1Index = i;
50      int parent2Index = i;
51
52      do {
53        if (i == breakPoint) {
54          child[i] = p1[parent1Index];
55        } else {
56          if (DueTimeParameter.ActualValue[p1[parent1Index] + 1] <
57            DueTimeParameter.ActualValue[p2[parent2Index] + 1]) {
58            child[i] = p1[parent1Index];
59          } else {
60            child[i] = p2[parent2Index];
61          }
62        }
63
64        p1.Remove(child[i]);
65        if (parent1Index >= p1.Count)
66          parent1Index = 0;
67
68        p2.Remove(child[i]);
69        if (parent2Index >= p2.Count)
70          parent2Index = 0;
71
72        i = (i + 1) % child.Length;
73      } while (i != breakPoint);
74
75      return child;
76    }
77  }
78}
Note: See TracBrowser for help on using the repository browser.