Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/Potvin/PotvinCrossover.cs @ 9473

Last change on this file since 9473 was 9473, checked in by jhelm, 11 years ago

#1966: Fixed some problems in MCV-move operators; Added parts of potvin-encoding implementation;

File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 System.Collections.Generic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Encodings.IntegerVectorEncoding;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Problems.BinPacking.Interfaces;
29
30namespace HeuristicLab.Encodings.PackingEncoding.Potvin {
31  [Item("Potvin Encoding Crossover", "An operator which crosses two Potvin representations. According to RBX by Potvin.")]
32  [StorableClass]
33  public class PotvinCrossover : PackingSolutionCrossover, IPotvinOperator {
34
35    [StorableConstructor]
36    protected PotvinCrossover(bool deserializing) : base(deserializing) { }
37    protected PotvinCrossover(PotvinCrossover original, Cloner cloner) : base(original, cloner) { }
38    public PotvinCrossover()
39      : base() {
40        ParentsParameter.ActualName = "Potvin";
41        ChildParameter.ActualName = "Potvin";
42    }
43    public override IDeepCloneable Clone(Cloner cloner) {
44      return new PotvinCrossover(this, cloner);
45    }
46
47    public PotvinEncoding Cross(IRandom random, PotvinEncoding parent1, PotvinEncoding parent2) {
48      PotvinEncoding child = parent2.Clone() as PotvinEncoding;
49
50      if (parent1.NrOfBins > 0 && child.NrOfBins > 0) {
51        int tourParent1 = random.Next(parent1.NrOfBins);
52        List<int> replacing = parent1.GetItemsInBin(tourParent1);
53
54        int tourParent2 = random.Next(child.NrOfBins);
55        List<int> replaced = child.GetItemsInBin(tourParent2);
56
57        child.Tours.Remove(replaced);
58        child.Tours.Insert(tourParent2, replacing);
59
60        Permutation vehicleAssignment = child.VehicleAssignment;
61
62        int vehicle = vehicleAssignment[tourParent2];
63        int vehicle2 = parent1.VehicleAssignment[tourParent1];
64        vehicleAssignment[tourParent2] = vehicle2;
65
66        for (int i = 0; i < vehicleAssignment.Length; i++) {
67          if (vehicleAssignment[i] == vehicle2 && i != tourParent2) {
68            vehicleAssignment[i] = vehicle;
69            break;
70          }
71        }
72
73        foreach (int city in replaced.Stops)
74          if (FindRoute(child, city) == null && !child.Unrouted.Contains(city))
75            child.Unrouted.Add(city);
76
77        if (Repair(random, child, replacing, problemInstance, allowInfeasible) || allowInfeasible)
78          return child;
79        else {
80          if (random.NextDouble() < 0.5)
81            return parent1.Clone() as PotvinEncoding;
82          else
83            return parent2.Clone() as PotvinEncoding;
84        }
85      } else {
86        return child;
87      }
88    }
89
90    public override IOperation Apply() {
91      var parents = ParentsParameter.ActualValue;
92
93      ChildParameter.ActualValue =
94        Cross(RandomParameter.ActualValue, parents[0] as PotvinEncoding, parents[1] as PotvinEncoding);
95
96      return base.Apply();
97    }
98  }
99}
Note: See TracBrowser for help on using the repository browser.