Changeset 15511
- Timestamp:
- 12/11/17 23:06:32 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Evaluation/GQAPNMoveEvaluator.cs
r15510 r15511 90 90 var slack = evaluation.Slack.ToArray(); 91 91 92 foreach (var kvp in move.NewAssignments) { 93 int equip = kvp.Key; 94 int newLoc = kvp.Value; 92 foreach (var equip in move.Indices) { 93 int newLoc = move.Reassignments[equip] - 1; // locations are given 1-based 95 94 int oldLoc = assignment[equip]; 96 95 var equipDemand = problemInstance.Demands[equip]; … … 98 97 installationCosts += problemInstance.InstallationCosts[equip, newLoc]; 99 98 for (int j = 0; j < assignment.Length; j++) { 100 if (!move.NewAssignments.ContainsKey(j)) { 99 var reassignedLoc = move.Reassignments[j] - 1; // 0 indicates that this equipment is not reassigned 100 if (reassignedLoc < 0) { 101 101 flowCosts += problemInstance.Weights[equip, j] * problemInstance.Distances[newLoc, assignment[j]]; 102 102 flowCosts -= problemInstance.Weights[equip, j] * problemInstance.Distances[oldLoc, assignment[j]]; … … 104 104 flowCosts -= problemInstance.Weights[j, equip] * problemInstance.Distances[assignment[j], oldLoc]; 105 105 } else { 106 flowCosts += problemInstance.Weights[equip, j] * problemInstance.Distances[newLoc, move.NewAssignments[j]];106 flowCosts += problemInstance.Weights[equip, j] * problemInstance.Distances[newLoc, reassignedLoc]; 107 107 flowCosts -= problemInstance.Weights[equip, j] * problemInstance.Distances[oldLoc, assignment[j]]; 108 108 } -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMove.cs
r15504 r15511 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 23 using System.Linq; 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using HeuristicLab.Encodings.IntegerVectorEncoding;27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 27 … … 32 31 public class NMove : Item { 33 32 [Storable] 34 public Dictionary<int, int> NewAssignments { get; private set; } 33 private int[] reassignments; 34 /// <summary> 35 /// Contains for each equipment the newly assigned location. 36 /// </summary> 37 /// <remarks> 38 /// Locations are 1-based. A 0 indicates that this equipment is not reassigned. 39 /// </remarks> 40 public IReadOnlyList<int> Reassignments { 41 get { return reassignments; } 42 } 35 43 [Storable] 36 public IntegerVector OriginalVector { get; private set; } 44 private List<int> indices; 45 /// <summary> 46 /// Which indices (=equipments) are reassigned. 47 /// </summary> 48 /// <remarks> 49 /// Equipments are 0-based. 50 /// </remarks> 51 public IReadOnlyList<int> Indices { 52 get { return indices; } 53 } 37 54 38 public int N { get { return NewAssignments.Count; } }55 public int N { get { return Indices.Count; } } 39 56 40 57 [StorableConstructor] … … 42 59 protected NMove(NMove original, Cloner cloner) 43 60 : base(original, cloner) { 44 NewAssignments = new Dictionary<int, int>(original.NewAssignments); 45 if (original.OriginalVector != null) 46 OriginalVector = cloner.Clone(original.OriginalVector); 61 reassignments = original.reassignments.ToArray(); 62 indices = original.indices.ToList(); 47 63 } 48 public NMove() : this(new int[0], new int[0], null) { } 49 public NMove(int[] equipments, int[] locations) : this(equipments, locations, null) { } 50 public NMove(int[] equipments, int[] locations, IntegerVector originalVector) 64 public NMove(int[] reassignments, List<int> indices) 51 65 : base() { 52 if (equipments == null) throw new ArgumentNullException("equipments", "NMove: Equipments must not be null."); 53 if (locations == null) throw new ArgumentNullException("locations", "NMove: Locations must not be null."); 54 if (equipments.Length != locations.Length) throw new ArgumentException("NMove: Length of equipments and locations is not identical."); 55 NewAssignments = new Dictionary<int, int>(); 56 for (int i = 0; i < equipments.Length; i++) 57 NewAssignments[equipments[i]] = locations[i]; 58 OriginalVector = originalVector; 66 this.reassignments = reassignments; 67 this.indices = indices; 59 68 } 60 69 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveAbsoluteAttribute.cs
r15504 r15511 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 using HeuristicLab.Common; … … 32 33 33 34 [Storable] 34 public Dictionary<int, int> OldAssignments { get; private set; }35 public List<Tuple<int, int>> OldAssignments { get; private set; } 35 36 [Storable] 36 37 public double MoveQuality { get; private set; } … … 41 42 public NMoveAbsoluteTabuAttribute(NMove move, IntegerVector assignment, double moveQuality) 42 43 : base() { 43 OldAssignments = new Dictionary<int, int>();44 foreach (var kvp in move.NewAssignments)45 OldAssignments.Add( kvp.Key, assignment[kvp.Key]);44 OldAssignments = new List<Tuple<int, int>>(move.N); 45 foreach (var equip in move.Indices) 46 OldAssignments.Add(Tuple.Create(equip, assignment[equip])); 46 47 MoveQuality = moveQuality; 47 48 } -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveMaker.cs
r15504 r15511 71 71 72 72 public static void Apply(IntegerVector vector, NMove move) { 73 foreach (var kvp in move.NewAssignments) 74 vector[kvp.Key] = kvp.Value; 73 for (var i = 0; i < move.N; i++) { 74 var equip = move.Indices[i]; 75 vector[equip] = move.Reassignments[equip] - 1; // location is given 1-based in reassignments 76 } 75 77 } 76 78 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveTabuChecker.cs
r15504 r15511 111 111 isTabu = true; 112 112 foreach (var kvp in attribute.OldAssignments) { 113 if (move.NewAssignments.ContainsKey(kvp.Key)) { 114 if (move.NewAssignments[kvp.Key] != kvp.Value) { 115 isTabu = false; 116 break; 117 } 113 var assignedLoc = move.Reassignments[kvp.Item1] - 1; // location is given 1-based 114 if (assignedLoc >= 0 && assignedLoc != kvp.Item2) { 115 isTabu = false; 116 break; 118 117 } 119 118 } -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/StochasticNMoveSingleMoveGenerator.cs
r15504 r15511 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 24 using System.Linq; 23 25 using HeuristicLab.Common; 24 26 using HeuristicLab.Core; … … 28 30 using HeuristicLab.Parameters; 29 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 using HeuristicLab.Random; 30 33 31 34 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { … … 55 58 56 59 public static NMove GenerateExactlyN(IRandom random, IntegerVector assignment, int n, DoubleArray capacities) { 57 int[] equipments = new int[n], locations = new int[n]; 58 HashSet<int> chosenEquipments = new HashSet<int>(); 59 for (int i = 0; i < n; i++) { 60 if (capacities.Length <= 1) throw new ArgumentException("There must be at least two locations."); 61 var dim = assignment.Length; 62 var reassignment = new int[dim]; 63 var equipments = Enumerable.Range(0, dim).SampleRandomWithoutRepetition(random, n, dim).ToList(); 64 for (var i = 0; i < n; i++) { 65 var equip = equipments[i]; 60 66 do { 61 equipments[i] = random.Next(assignment.Length); 62 } while (chosenEquipments.Contains(equipments[i])); 63 chosenEquipments.Add(equipments[i]); 64 do { 65 locations[i] = random.Next(capacities.Length); 66 } while (locations[i] == assignment[equipments[i]]); 67 reassignment[equip] = random.Next(capacities.Length) + 1; 68 } while (reassignment[equip] == assignment[equip] + 1); 67 69 } 68 return new NMove( equipments, locations);70 return new NMove(reassignment, equipments); 69 71 } 70 72 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/LocalImprovers/ApproximateLocalSearch.cs
r15507 r15511 126 126 127 127 var moveEval = GQAPNMoveEvaluator.Evaluate(move, assignment, evaluation, problemInstance); 128 evaluations += move. NewAssignments.Count * deltaEvaluationFactor;128 evaluations += move.Indices.Count * deltaEvaluationFactor; 129 129 double moveQuality = problemInstance.ToSingleObjective(moveEval); 130 130
Note: See TracChangeset
for help on using the changeset viewer.