1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 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 System;
|
---|
23 | using System.Linq;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Data;
|
---|
27 | using HeuristicLab.Operators;
|
---|
28 | using HeuristicLab.Optimization;
|
---|
29 | using HeuristicLab.Optimization.Operators;
|
---|
30 | using HeuristicLab.Parameters;
|
---|
31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
32 | using HeuristicLab.PluginInfrastructure;
|
---|
33 |
|
---|
34 | namespace HeuristicLab.Algorithms.VOffspringSelectionGeneticAlgorithm {
|
---|
35 | [Item("WeightedParentsDiversityComparator", "Compares the similarity against that of its parents (assumes the parents are subscopes to the child scope). This operator works with any number of subscopes > 0.")]
|
---|
36 | [StorableClass]
|
---|
37 | public class WeightedParentsDiversityComparator : SingleSuccessorOperator, ISubScopesQualityComparatorOperator, ISimilarityBasedOperator {
|
---|
38 | [Storable]
|
---|
39 | public ISolutionSimilarityCalculator SimilarityCalculator { get; set; }
|
---|
40 | public IValueLookupParameter<BoolValue> MaximizationParameter {
|
---|
41 | get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
42 | }
|
---|
43 | public ILookupParameter<DoubleValue> LeftSideParameter {
|
---|
44 | get { return (ILookupParameter<DoubleValue>)Parameters["LeftSide"]; }
|
---|
45 | }
|
---|
46 | public ILookupParameter<ItemArray<DoubleValue>> RightSideParameter {
|
---|
47 | get { return (ILookupParameter<ItemArray<DoubleValue>>)Parameters["RightSide"]; }
|
---|
48 | }
|
---|
49 | public ILookupParameter<BoolValue> ResultParameter {
|
---|
50 | get { return (ILookupParameter<BoolValue>)Parameters["Result"]; }
|
---|
51 | }
|
---|
52 | public ValueLookupParameter<DoubleValue> ComparisonFactorParameter {
|
---|
53 | get { return (ValueLookupParameter<DoubleValue>)Parameters["ComparisonFactor"]; }
|
---|
54 | }
|
---|
55 | public ValueLookupParameter<DoubleValue> DiversityComparisonFactorParameter {
|
---|
56 | get { return (ValueLookupParameter<DoubleValue>)Parameters["DiversityComparisonFactor"]; }
|
---|
57 | }
|
---|
58 | private ValueLookupParameter<DoubleValue> ComparisonFactorLowerBoundParameter {
|
---|
59 | get { return (ValueLookupParameter<DoubleValue>)Parameters["DiversityComparisonFactorLowerBound"]; }
|
---|
60 | }
|
---|
61 | private ValueLookupParameter<DoubleValue> ComparisonFactorUpperBoundParameter {
|
---|
62 | get { return (ValueLookupParameter<DoubleValue>)Parameters["DiversityComparisonFactorUpperBound"]; }
|
---|
63 | }
|
---|
64 | public IConstrainedValueParameter<IDiscreteDoubleValueModifier> ComparisonFactorModifierParameter {
|
---|
65 | get { return (IConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["ComparisonFactorModifier"]; }
|
---|
66 | }
|
---|
67 |
|
---|
68 | [StorableConstructor]
|
---|
69 | protected WeightedParentsDiversityComparator(bool deserializing) : base(deserializing) { }
|
---|
70 | protected WeightedParentsDiversityComparator(WeightedParentsDiversityComparator original, Cloner cloner) : base(original, cloner) { }
|
---|
71 | public WeightedParentsDiversityComparator()
|
---|
72 | : base() {
|
---|
73 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, false otherwise"));
|
---|
74 | Parameters.Add(new LookupParameter<DoubleValue>("LeftSide", "The quality of the child."));
|
---|
75 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("RightSide", "The qualities of the parents."));
|
---|
76 | Parameters.Add(new LookupParameter<BoolValue>("Result", "The result of the comparison: True means Quality is better, False means it is worse than parents."));
|
---|
77 | Parameters.Add(new ValueLookupParameter<DoubleValue>("ComparisonFactor", "Determines if the quality should be compared to the better parent (1.0), to the worse (0.0) or to any linearly interpolated value between them."));
|
---|
78 | Parameters.Add(new ValueLookupParameter<DoubleValue>("DiversityComparisonFactor", "Determines if the quality should be compared to the better parent (1.0), to the worse (0.0) or to any linearly interpolated value between them.", new DoubleValue(0.0)));
|
---|
79 | Parameters.Add(new ValueLookupParameter<DoubleValue>("DiversityComparisonFactorLowerBound", "The lower bound of the comparison factor (start).", new DoubleValue(0.5)));
|
---|
80 | Parameters.Add(new ValueLookupParameter<DoubleValue>("DiversityComparisonFactorUpperBound", "The upper bound of the comparison factor (end).", new DoubleValue(1.0)));
|
---|
81 | Parameters.Add(new OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>("ComparisonFactorModifier", "The operator used to modify the comparison factor.", new ItemSet<IDiscreteDoubleValueModifier>(new IDiscreteDoubleValueModifier[] { new LinearDiscreteDoubleValueModifier() }), new LinearDiscreteDoubleValueModifier()));
|
---|
82 |
|
---|
83 | foreach (IDiscreteDoubleValueModifier modifier in ApplicationManager.Manager.GetInstances<IDiscreteDoubleValueModifier>().OrderBy(x => x.Name))
|
---|
84 | ComparisonFactorModifierParameter.ValidValues.Add(modifier);
|
---|
85 | IDiscreteDoubleValueModifier linearModifier = ComparisonFactorModifierParameter.ValidValues.FirstOrDefault(x => x.GetType().Name.Equals("LinearDiscreteDoubleValueModifier"));
|
---|
86 | if (linearModifier != null) ComparisonFactorModifierParameter.Value = linearModifier;
|
---|
87 | ParameterizeComparisonFactorModifiers();
|
---|
88 | }
|
---|
89 |
|
---|
90 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
91 | return new WeightedParentsDiversityComparator(this, cloner);
|
---|
92 | }
|
---|
93 |
|
---|
94 | private void ParameterizeComparisonFactorModifiers() {
|
---|
95 | //TODO: does not work if Generations parameter names are changed
|
---|
96 | foreach (IDiscreteDoubleValueModifier modifier in ComparisonFactorModifierParameter.ValidValues) {
|
---|
97 | modifier.IndexParameter.ActualName = "Generations";
|
---|
98 | modifier.EndIndexParameter.ActualName = "MaximumGenerations";
|
---|
99 | modifier.EndValueParameter.ActualName = ComparisonFactorUpperBoundParameter.Name;
|
---|
100 | modifier.StartIndexParameter.Value = new IntValue(0);
|
---|
101 | modifier.StartValueParameter.ActualName = ComparisonFactorLowerBoundParameter.Name;
|
---|
102 | modifier.ValueParameter.ActualName = "DiversityComparisonFactor";
|
---|
103 | }
|
---|
104 | }
|
---|
105 |
|
---|
106 | public override IOperation Apply() {
|
---|
107 | ItemArray<DoubleValue> rightQualities = RightSideParameter.ActualValue;
|
---|
108 | if (rightQualities.Length < 1) throw new InvalidOperationException(Name + ": No subscopes found.");
|
---|
109 | double compFact = ComparisonFactorParameter.ActualValue.Value;
|
---|
110 | double diversityComFact = DiversityComparisonFactorParameter.ActualValue.Value;
|
---|
111 | bool maximization = MaximizationParameter.ActualValue.Value;
|
---|
112 | double leftQuality = LeftSideParameter.ActualValue.Value;
|
---|
113 | bool resultDiversity;
|
---|
114 |
|
---|
115 | double threshold = 0;
|
---|
116 |
|
---|
117 | #region Calculate threshold
|
---|
118 | if (rightQualities.Length == 2) {
|
---|
119 | var sim1 = SimilarityCalculator.CalculateSolutionSimilarity(ExecutionContext.Scope, ExecutionContext.Scope.SubScopes[0]);
|
---|
120 | var sim2 = SimilarityCalculator.CalculateSolutionSimilarity(ExecutionContext.Scope, ExecutionContext.Scope.SubScopes[1]);
|
---|
121 | var simAvg = (sim1 + sim2) / 2.0;
|
---|
122 |
|
---|
123 | //TODO: try out different things
|
---|
124 | //resultDiversity = simAvg < diversityComFact;
|
---|
125 | resultDiversity = sim1 < diversityComFact || sim2 < diversityComFact;
|
---|
126 |
|
---|
127 | double minQuality = Math.Min(rightQualities[0].Value, rightQualities[1].Value);
|
---|
128 | double maxQuality = Math.Max(rightQualities[0].Value, rightQualities[1].Value);
|
---|
129 | if (maximization)
|
---|
130 | threshold = minQuality + (maxQuality - minQuality) * compFact;
|
---|
131 | else
|
---|
132 | threshold = maxQuality - (maxQuality - minQuality) * compFact;
|
---|
133 | } else {
|
---|
134 | throw new NotImplementedException("Only 2 parents are supported.");
|
---|
135 | }
|
---|
136 | #endregion
|
---|
137 |
|
---|
138 | bool result = maximization && leftQuality > threshold || !maximization && leftQuality < threshold;
|
---|
139 | result = result && resultDiversity;
|
---|
140 | BoolValue resultValue = ResultParameter.ActualValue;
|
---|
141 | if (resultValue == null) {
|
---|
142 | ResultParameter.ActualValue = new BoolValue(result);
|
---|
143 | } else {
|
---|
144 | resultValue.Value = result;
|
---|
145 | }
|
---|
146 |
|
---|
147 | //like the placeholder, though we create child operations
|
---|
148 | OperationCollection next = new OperationCollection(base.Apply());
|
---|
149 | IOperator op = ComparisonFactorModifierParameter.Value;
|
---|
150 | if (op != null)
|
---|
151 | next.Insert(0, ExecutionContext.CreateChildOperation(op));
|
---|
152 | return next;
|
---|
153 | }
|
---|
154 | }
|
---|
155 | }
|
---|