1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 Joseph Helm and 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 |
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Data;
|
---|
26 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
27 | using HeuristicLab.Operators;
|
---|
28 | using HeuristicLab.Optimization;
|
---|
29 | using HeuristicLab.Parameters;
|
---|
30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
31 | using HeuristicLab.Problems.BinPacking;
|
---|
32 |
|
---|
33 | namespace HeuristicLab.Encodings.PackingEncoding.PackingSequence {
|
---|
34 | [Item("Sequence Move Maker", "Peforms a Sequence move on a given Sequence vector and updates the quality.")]
|
---|
35 | [StorableClass]
|
---|
36 | public class SequenceMoveMaker : SingleSuccessorOperator, IMoveMaker, IPackingSequenceMoveOperator {
|
---|
37 | public override bool CanChangeName {
|
---|
38 | get { return false; }
|
---|
39 | }
|
---|
40 | public ILookupParameter<DoubleValue> QualityParameter {
|
---|
41 | get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
42 | }
|
---|
43 | public ILookupParameter<DoubleValue> MoveQualityParameter {
|
---|
44 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
|
---|
45 | }
|
---|
46 | public ILookupParameter<IPackingMove<Permutation>> PackingMoveParameter {
|
---|
47 | get { return (ILookupParameter<IPackingMove<Permutation>>)Parameters["PackingMove"]; }
|
---|
48 | }
|
---|
49 | public ILookupParameter<Permutation> PackingSequenceParameter {
|
---|
50 | get { return (ILookupParameter<Permutation>)Parameters["PackingSequence"]; }
|
---|
51 | }
|
---|
52 | public ILookupParameter<IPackingPlan> PackingPlanParameter {
|
---|
53 | get { return (ILookupParameter<IPackingPlan>)Parameters["PackingPlan"]; }
|
---|
54 | }
|
---|
55 | public ILookupParameter<IPackingPlan> PackingPlanAfterMoveParameter {
|
---|
56 | get { return (ILookupParameter<IPackingPlan>)Parameters["PackingPlanAfterMove"]; }
|
---|
57 | }
|
---|
58 |
|
---|
59 | [StorableConstructor]
|
---|
60 | protected SequenceMoveMaker(bool deserializing) : base(deserializing) { }
|
---|
61 | protected SequenceMoveMaker(SequenceMoveMaker original, Cloner cloner) : base(original, cloner) { }
|
---|
62 | public SequenceMoveMaker()
|
---|
63 | : base() {
|
---|
64 | Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality of the solution."));
|
---|
65 | Parameters.Add(new LookupParameter<IPackingMove<Permutation>>("PackingMove", "The move to evaluate."));
|
---|
66 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The relative quality of the move."));
|
---|
67 | Parameters.Add(new LookupParameter<Permutation>("PackingSequence", "The solution as Sequence vector."));
|
---|
68 | Parameters.Add(new LookupParameter<IPackingPlan>("PackingPlan", "The currently best performing, decoded bin-packing solution represented as generalized packing-plan."));
|
---|
69 | Parameters.Add(new LookupParameter<IPackingPlan>("PackingPlanAfterMove", "The moved and decoded bin-packing solution represented as generalized packing-plan."));
|
---|
70 | }
|
---|
71 |
|
---|
72 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
73 | return new SequenceMoveMaker(this, cloner);
|
---|
74 | }
|
---|
75 |
|
---|
76 | public override IOperation Apply() {
|
---|
77 | DoubleValue moveQuality = MoveQualityParameter.ActualValue;
|
---|
78 | DoubleValue quality = QualityParameter.ActualValue;
|
---|
79 |
|
---|
80 | PackingPlanParameter.ActualValue = PackingPlanAfterMoveParameter.ActualValue;
|
---|
81 |
|
---|
82 | quality.Value = moveQuality.Value;
|
---|
83 |
|
---|
84 | return base.Apply();
|
---|
85 | }
|
---|
86 | }
|
---|
87 | }
|
---|