[6716] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6716] | 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;
|
---|
[10295] | 24 | using HeuristicLab.Analysis;
|
---|
| 25 | using HeuristicLab.Collections;
|
---|
| 26 | using HeuristicLab.Common;
|
---|
[6716] | 27 | using HeuristicLab.Core;
|
---|
[10295] | 28 | using HeuristicLab.Data;
|
---|
| 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Parameters;
|
---|
[6716] | 31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[10474] | 32 | using HeuristicLab.Random;
|
---|
[6716] | 33 |
|
---|
| 34 | namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
|
---|
| 35 | [Item("BiasedMultiVRPSolutionCrossover", "Randomly selects and applies one of its crossovers every time it is called based on the success progress.")]
|
---|
| 36 | [StorableClass]
|
---|
| 37 | public class BiasedMultiVRPSolutionCrossover : MultiVRPSolutionCrossover {
|
---|
| 38 | public ValueLookupParameter<DoubleArray> ActualProbabilitiesParameter {
|
---|
| 39 | get { return (ValueLookupParameter<DoubleArray>)Parameters["ActualProbabilities"]; }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | public ValueLookupParameter<StringValue> SuccessProgressAnalyisis {
|
---|
| 43 | get { return (ValueLookupParameter<StringValue>)Parameters["SuccessProgressAnalysis"]; }
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | public ValueLookupParameter<DoubleValue> Factor {
|
---|
| 47 | get { return (ValueLookupParameter<DoubleValue>)Parameters["Factor"]; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | public ValueParameter<DoubleValue> LowerBoundParameter {
|
---|
| 51 | get { return (ValueParameter<DoubleValue>)Parameters["LowerBound"]; }
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | public ValueParameter<IntValue> DepthParameter {
|
---|
| 55 | get { return (ValueParameter<IntValue>)Parameters["Depth"]; }
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | [StorableConstructor]
|
---|
| 59 | protected BiasedMultiVRPSolutionCrossover(bool deserializing) : base(deserializing) { }
|
---|
| 60 | protected BiasedMultiVRPSolutionCrossover(BiasedMultiVRPSolutionCrossover original, Cloner cloner) : base(original, cloner) { }
|
---|
| 61 | public BiasedMultiVRPSolutionCrossover()
|
---|
| 62 | : base() {
|
---|
| 63 | Parameters.Add(new ValueLookupParameter<DoubleArray>("ActualProbabilities", "The array of relative probabilities for each operator."));
|
---|
| 64 | Parameters.Add(new ValueLookupParameter<StringValue>("SuccessProgressAnalysis", "The success progress analyisis to be considered",
|
---|
| 65 | new StringValue("ExecutedCrossoverOperator")));
|
---|
| 66 |
|
---|
| 67 | Parameters.Add(new ValueLookupParameter<DoubleValue>("Factor", "The factor with which the probabilities should be updated", new DoubleValue(0.2)));
|
---|
| 68 | Parameters.Add(new ValueParameter<DoubleValue>("LowerBound", "The depth of the individuals in the scope tree.", new DoubleValue(0.01)));
|
---|
| 69 | Parameters.Add(new ValueParameter<IntValue>("Depth", "The depth of the individuals in the scope tree.", new IntValue(1)));
|
---|
[10348] | 70 |
|
---|
| 71 | SelectedOperatorParameter.ActualName = "SelectedCrossoverOperator";
|
---|
[6716] | 72 | }
|
---|
| 73 |
|
---|
| 74 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 75 | return new BiasedMultiVRPSolutionCrossover(this, cloner);
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | public override void InitializeState() {
|
---|
| 79 | base.InitializeState();
|
---|
| 80 |
|
---|
| 81 | ActualProbabilitiesParameter.Value = null;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[10295] | 84 | public override IOperation InstrumentedApply() {
|
---|
[6716] | 85 | IOperator successor = null;
|
---|
| 86 |
|
---|
| 87 | if (ActualProbabilitiesParameter.ActualValue == null) {
|
---|
| 88 | ActualProbabilitiesParameter.Value = ProbabilitiesParameter.ActualValue.Clone() as DoubleArray;
|
---|
| 89 | } else {
|
---|
| 90 | String key = "SuccessfulOffspringAnalyzer Results";
|
---|
| 91 |
|
---|
| 92 | ResultCollection results = null;
|
---|
| 93 | IScope scope = ExecutionContext.Parent.Scope;
|
---|
| 94 | int depth = 1;
|
---|
| 95 | while (scope != null && depth < DepthParameter.Value.Value) {
|
---|
| 96 | scope = scope.Parent;
|
---|
| 97 | depth++;
|
---|
| 98 | }
|
---|
| 99 | if (scope != null)
|
---|
| 100 | results = scope.Variables["Results"].Value as ResultCollection;
|
---|
| 101 |
|
---|
| 102 | if (results != null && results.ContainsKey(key)) {
|
---|
| 103 | ResultCollection successProgressAnalysisResult = results[key].Value as ResultCollection;
|
---|
| 104 | key = SuccessProgressAnalyisis.Value.Value;
|
---|
| 105 |
|
---|
| 106 | if (successProgressAnalysisResult.ContainsKey(key)) {
|
---|
| 107 | DataTable successProgressAnalysis = successProgressAnalysisResult[key].Value as DataTable;
|
---|
| 108 |
|
---|
| 109 | for (int i = 0; i < Operators.Count; i++) {
|
---|
| 110 | IOperator current = Operators[i];
|
---|
| 111 |
|
---|
| 112 | if (successProgressAnalysis.Rows.ContainsKey(current.Name)) {
|
---|
| 113 | DataRow row = successProgressAnalysis.Rows[current.Name];
|
---|
| 114 |
|
---|
| 115 | double sum = 0.0;
|
---|
| 116 | ObservableList<double> usages = row.Values;
|
---|
| 117 |
|
---|
| 118 | sum += (double)usages.Last();
|
---|
| 119 |
|
---|
| 120 | ActualProbabilitiesParameter.ActualValue[i] += (sum / ActualProbabilitiesParameter.ActualValue[i]) * Factor.Value.Value;
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
| 123 | }
|
---|
| 124 | }
|
---|
| 125 |
|
---|
| 126 | //normalize
|
---|
| 127 | double max = ActualProbabilitiesParameter.ActualValue.Max();
|
---|
| 128 | for (int i = 0; i < ActualProbabilitiesParameter.ActualValue.Length; i++) {
|
---|
| 129 | ActualProbabilitiesParameter.ActualValue[i] /= max;
|
---|
| 130 | ActualProbabilitiesParameter.ActualValue[i] =
|
---|
| 131 | Math.Max(LowerBoundParameter.Value.Value,
|
---|
| 132 | ActualProbabilitiesParameter.ActualValue[i]);
|
---|
| 133 | }
|
---|
| 134 | }
|
---|
| 135 |
|
---|
[10472] | 136 | //////////////// code has to be duplicated since ActualProbabilitiesParameter.ActualValue are updated and used for operator selection
|
---|
[10298] | 137 | IRandom random = RandomParameter.ActualValue;
|
---|
| 138 | DoubleArray probabilities = ActualProbabilitiesParameter.ActualValue;
|
---|
| 139 | if (probabilities.Length != Operators.Count) {
|
---|
| 140 | throw new InvalidOperationException(Name + ": The list of probabilities has to match the number of operators");
|
---|
| 141 | }
|
---|
| 142 | var checkedOperators = Operators.CheckedItems;
|
---|
| 143 | if (checkedOperators.Count() > 0) {
|
---|
| 144 | // select a random operator from the checked operators
|
---|
[10504] | 145 | successor = checkedOperators.SampleProportional(random, 1, checkedOperators.Select(x => probabilities[x.Index]), false, false).First().Value;
|
---|
[10298] | 146 | }
|
---|
| 147 |
|
---|
| 148 | IOperation successorOp = null;
|
---|
| 149 | if (Successor != null)
|
---|
| 150 | successorOp = ExecutionContext.CreateOperation(Successor);
|
---|
| 151 | OperationCollection next = new OperationCollection(successorOp);
|
---|
| 152 | if (successor != null) {
|
---|
| 153 | SelectedOperatorParameter.ActualValue = new StringValue(successor.Name);
|
---|
| 154 |
|
---|
| 155 | if (CreateChildOperation)
|
---|
| 156 | next.Insert(0, ExecutionContext.CreateChildOperation(successor));
|
---|
| 157 | else next.Insert(0, ExecutionContext.CreateOperation(successor));
|
---|
| 158 | } else {
|
---|
| 159 | SelectedOperatorParameter.ActualValue = new StringValue("");
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | return next;
|
---|
[6716] | 163 | }
|
---|
| 164 | }
|
---|
| 165 | }
|
---|