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 |
|
---|
22 | using HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Encodings.IntegerVectorEncoding;
|
---|
26 | using HeuristicLab.Operators;
|
---|
27 | using HeuristicLab.Optimization;
|
---|
28 | using HeuristicLab.Parameters;
|
---|
29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
|
---|
32 | [Item("NMoveMaker", "Performs an n-move.")]
|
---|
33 | [StorableClass]
|
---|
34 | public class NMoveMaker : SingleSuccessorOperator, IAssignmentAwareGQAPOperator, IQualityAwareGQAPOperator, IMoveQualityAwareGQAPOperator, IGQAPNMoveOperator, IMoveMaker {
|
---|
35 |
|
---|
36 | public ILookupParameter<IntegerVector> AssignmentParameter {
|
---|
37 | get { return (ILookupParameter<IntegerVector>)Parameters["Assignment"]; }
|
---|
38 | }
|
---|
39 | public ILookupParameter<NMove> MoveParameter {
|
---|
40 | get { return (ILookupParameter<NMove>)Parameters["Move"]; }
|
---|
41 | }
|
---|
42 | ILookupParameter<BoolValue> IQualityAwareGQAPOperator.MaximizationParameter {
|
---|
43 | get { return MaximizationParameter; }
|
---|
44 | }
|
---|
45 | ILookupParameter<BoolValue> IMoveQualityAwareGQAPOperator.MaximizationParameter {
|
---|
46 | get { return MaximizationParameter; }
|
---|
47 | }
|
---|
48 | public ILookupParameter<BoolValue> MaximizationParameter {
|
---|
49 | get { return (ILookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
50 | }
|
---|
51 | public ILookupParameter<DoubleValue> QualityParameter {
|
---|
52 | get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
53 | }
|
---|
54 | public ILookupParameter<DoubleValue> FlowDistanceQualityParameter {
|
---|
55 | get { return (ILookupParameter<DoubleValue>)Parameters["FlowDistanceQuality"]; }
|
---|
56 | }
|
---|
57 | public ILookupParameter<DoubleValue> InstallationQualityParameter {
|
---|
58 | get { return (ILookupParameter<DoubleValue>)Parameters["InstallationQuality"]; }
|
---|
59 | }
|
---|
60 | public ILookupParameter<DoubleValue> OverbookedCapacityParameter {
|
---|
61 | get { return (ILookupParameter<DoubleValue>)Parameters["OverbookedCapacity"]; }
|
---|
62 | }
|
---|
63 | public ILookupParameter<DoubleValue> MoveQualityParameter {
|
---|
64 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
|
---|
65 | }
|
---|
66 | public ILookupParameter<DoubleValue> MoveFlowDistanceQualityParameter {
|
---|
67 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveFlowDistanceQuality"]; }
|
---|
68 | }
|
---|
69 | public ILookupParameter<DoubleValue> MoveInstallationQualityParameter {
|
---|
70 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveInstallationQuality"]; }
|
---|
71 | }
|
---|
72 | public ILookupParameter<DoubleValue> MoveOverbookedCapacityParameter {
|
---|
73 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveOverbookedCapacity"]; }
|
---|
74 | }
|
---|
75 |
|
---|
76 | [StorableConstructor]
|
---|
77 | protected NMoveMaker(bool deserializing) : base(deserializing) { }
|
---|
78 | protected NMoveMaker(NMoveMaker original, Cloner cloner) : base(original, cloner) { }
|
---|
79 | public NMoveMaker()
|
---|
80 | : base() {
|
---|
81 | Parameters.Add(new LookupParameter<IntegerVector>("Assignment", GQAPSolutionCreator.AssignmentDescription));
|
---|
82 | Parameters.Add(new LookupParameter<NMove>("Move", GQAPNMoveGenerator.MoveDescription));
|
---|
83 | Parameters.Add(new LookupParameter<BoolValue>("Maximization", GeneralizedQuadraticAssignmentProblem.MaximizationDescription));
|
---|
84 | Parameters.Add(new LookupParameter<DoubleValue>("Quality", GQAPEvaluator.QualityDescription));
|
---|
85 | Parameters.Add(new LookupParameter<DoubleValue>("FlowDistanceQuality", GQAPEvaluator.FlowDistanceQualityDescription));
|
---|
86 | Parameters.Add(new LookupParameter<DoubleValue>("InstallationQuality", GQAPEvaluator.InstallationQualityDescription));
|
---|
87 | Parameters.Add(new LookupParameter<DoubleValue>("OverbookedCapacity", GQAPEvaluator.OverbookedCapacityDescription));
|
---|
88 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", GQAPNMoveEvaluator.MoveQualityDescription));
|
---|
89 | Parameters.Add(new LookupParameter<DoubleValue>("MoveFlowDistanceQuality", GQAPNMoveEvaluator.MoveFlowDistanceQualityDescription));
|
---|
90 | Parameters.Add(new LookupParameter<DoubleValue>("MoveInstallationQuality", GQAPNMoveEvaluator.MoveInstallationQualityDescription));
|
---|
91 | Parameters.Add(new LookupParameter<DoubleValue>("MoveOverbookedCapacity", GQAPNMoveEvaluator.MoveOverbookedCapacityDescription));
|
---|
92 | }
|
---|
93 |
|
---|
94 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
95 | return new NMoveMaker(this, cloner);
|
---|
96 | }
|
---|
97 |
|
---|
98 | public static void Apply(IntegerVector vector, NMove move) {
|
---|
99 | for (int i = 0; i < move.N; i++) {
|
---|
100 | vector[move.Equipments[i]] = move.Locations[i];
|
---|
101 | }
|
---|
102 | }
|
---|
103 |
|
---|
104 | public override IOperation Apply() {
|
---|
105 | Apply(AssignmentParameter.ActualValue, MoveParameter.ActualValue);
|
---|
106 | QualityParameter.ActualValue.Value = MoveQualityParameter.ActualValue.Value;
|
---|
107 | FlowDistanceQualityParameter.ActualValue.Value = MoveFlowDistanceQualityParameter.ActualValue.Value;
|
---|
108 | InstallationQualityParameter.ActualValue.Value = MoveInstallationQualityParameter.ActualValue.Value;
|
---|
109 | OverbookedCapacityParameter.ActualValue.Value = MoveOverbookedCapacityParameter.ActualValue.Value;
|
---|
110 | return base.Apply();
|
---|
111 | }
|
---|
112 | }
|
---|
113 | }
|
---|