[3641] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3641] | 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.Linq;
|
---|
[4722] | 23 | using HeuristicLab.Common;
|
---|
[4068] | 24 | using HeuristicLab.Core;
|
---|
[3641] | 25 | using HeuristicLab.Data;
|
---|
[4068] | 26 | using HeuristicLab.Encodings.BinaryVectorEncoding;
|
---|
[3641] | 27 | using HeuristicLab.Operators;
|
---|
[4068] | 28 | using HeuristicLab.Optimization;
|
---|
[3641] | 29 | using HeuristicLab.Parameters;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 31 |
|
---|
[3797] | 32 | namespace HeuristicLab.Problems.Knapsack {
|
---|
[3641] | 33 | /// <summary>
|
---|
[4513] | 34 | /// An operator for analyzing the best solution for a Knapsack problem.
|
---|
[3641] | 35 | /// </summary>
|
---|
[4513] | 36 | [Item("BestKnapsackSolutionAnalyzer", "An operator for analyzing the best solution for a Knapsack problem.")]
|
---|
[3641] | 37 | [StorableClass]
|
---|
[4722] | 38 | public class BestKnapsackSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
|
---|
[7172] | 39 | public virtual bool EnabledByDefault {
|
---|
| 40 | get { return true; }
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[3787] | 43 | public LookupParameter<BoolValue> MaximizationParameter {
|
---|
| 44 | get { return (LookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
| 45 | }
|
---|
[3667] | 46 | public ScopeTreeLookupParameter<BinaryVector> BinaryVectorParameter {
|
---|
| 47 | get { return (ScopeTreeLookupParameter<BinaryVector>)Parameters["BinaryVector"]; }
|
---|
[3641] | 48 | }
|
---|
[3667] | 49 | public LookupParameter<IntValue> KnapsackCapacityParameter {
|
---|
| 50 | get { return (LookupParameter<IntValue>)Parameters["KnapsackCapacity"]; }
|
---|
[3641] | 51 | }
|
---|
[3667] | 52 | public LookupParameter<IntArray> WeightsParameter {
|
---|
| 53 | get { return (LookupParameter<IntArray>)Parameters["Weights"]; }
|
---|
[3641] | 54 | }
|
---|
[3667] | 55 | public LookupParameter<IntArray> ValuesParameter {
|
---|
| 56 | get { return (LookupParameter<IntArray>)Parameters["Values"]; }
|
---|
[3641] | 57 | }
|
---|
[3667] | 58 | public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
|
---|
| 59 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
[3641] | 60 | }
|
---|
[3667] | 61 | public LookupParameter<KnapsackSolution> BestSolutionParameter {
|
---|
| 62 | get { return (LookupParameter<KnapsackSolution>)Parameters["BestSolution"]; }
|
---|
[3641] | 63 | }
|
---|
[3667] | 64 | public ValueLookupParameter<ResultCollection> ResultsParameter {
|
---|
| 65 | get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
|
---|
[3641] | 66 | }
|
---|
[3787] | 67 | public LookupParameter<DoubleValue> BestKnownQualityParameter {
|
---|
| 68 | get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
|
---|
| 69 | }
|
---|
| 70 | public LookupParameter<BinaryVector> BestKnownSolutionParameter {
|
---|
| 71 | get { return (LookupParameter<BinaryVector>)Parameters["BestKnownSolution"]; }
|
---|
| 72 | }
|
---|
[3641] | 73 |
|
---|
[4722] | 74 | [StorableConstructor]
|
---|
| 75 | protected BestKnapsackSolutionAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
| 76 | protected BestKnapsackSolutionAnalyzer(BestKnapsackSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
[3641] | 77 | public BestKnapsackSolutionAnalyzer()
|
---|
| 78 | : base() {
|
---|
[3787] | 79 | Parameters.Add(new LookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem."));
|
---|
[4513] | 80 | Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("BinaryVector", "The Knapsack solutions from which the best solution should be visualized."));
|
---|
[3641] | 81 | Parameters.Add(new LookupParameter<IntValue>("KnapsackCapacity", "Capacity of the Knapsack."));
|
---|
| 82 | Parameters.Add(new LookupParameter<IntArray>("Weights", "The weights of the items."));
|
---|
| 83 | Parameters.Add(new LookupParameter<IntArray>("Values", "The values of the items."));
|
---|
| 84 |
|
---|
[4513] | 85 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the Knapsack solutions which should be visualized."));
|
---|
| 86 | Parameters.Add(new LookupParameter<KnapsackSolution>("BestSolution", "The best Knapsack solution."));
|
---|
[3641] | 87 | Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the knapsack solution should be stored."));
|
---|
[3787] | 88 | Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution."));
|
---|
| 89 | Parameters.Add(new LookupParameter<BinaryVector>("BestKnownSolution", "The best known solution."));
|
---|
[3641] | 90 | }
|
---|
| 91 |
|
---|
[4722] | 92 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 93 | return new BestKnapsackSolutionAnalyzer(this, cloner);
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[3641] | 96 | public override IOperation Apply() {
|
---|
[3667] | 97 | ItemArray<BinaryVector> binaryVectors = BinaryVectorParameter.ActualValue;
|
---|
| 98 | ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
|
---|
[3641] | 99 | ResultCollection results = ResultsParameter.ActualValue;
|
---|
[3787] | 100 | bool max = MaximizationParameter.ActualValue.Value;
|
---|
| 101 | DoubleValue bestKnownQuality = BestKnownQualityParameter.ActualValue;
|
---|
[3641] | 102 |
|
---|
[3787] | 103 | int i = -1;
|
---|
[4068] | 104 | if (!max)
|
---|
[3787] | 105 | i = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
|
---|
| 106 | else i = qualities.Select((x, index) => new { index, x.Value }).OrderByDescending(x => x.Value).First().index;
|
---|
[3667] | 107 |
|
---|
[3787] | 108 | if (bestKnownQuality == null ||
|
---|
| 109 | max && qualities[i].Value > bestKnownQuality.Value ||
|
---|
| 110 | !max && qualities[i].Value < bestKnownQuality.Value) {
|
---|
| 111 | BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[i].Value);
|
---|
| 112 | BestKnownSolutionParameter.ActualValue = (BinaryVector)binaryVectors[i].Clone();
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[3641] | 115 | KnapsackSolution solution = BestSolutionParameter.ActualValue;
|
---|
| 116 | if (solution == null) {
|
---|
[3787] | 117 | solution = new KnapsackSolution((BinaryVector)binaryVectors[i].Clone(), new DoubleValue(qualities[i].Value),
|
---|
[3641] | 118 | KnapsackCapacityParameter.ActualValue, WeightsParameter.ActualValue, ValuesParameter.ActualValue);
|
---|
| 119 | BestSolutionParameter.ActualValue = solution;
|
---|
| 120 | results.Add(new Result("Best Knapsack Solution", solution));
|
---|
[4068] | 121 | } else {
|
---|
[3787] | 122 | if (max && qualities[i].Value > solution.Quality.Value ||
|
---|
| 123 | !max && qualities[i].Value < solution.Quality.Value) {
|
---|
| 124 | solution.BinaryVector = (BinaryVector)binaryVectors[i].Clone();
|
---|
| 125 | solution.Quality = new DoubleValue(qualities[i].Value);
|
---|
| 126 | solution.Capacity = KnapsackCapacityParameter.ActualValue;
|
---|
| 127 | solution.Weights = WeightsParameter.ActualValue;
|
---|
| 128 | solution.Values = ValuesParameter.ActualValue;
|
---|
| 129 | }
|
---|
[3641] | 130 | }
|
---|
| 131 |
|
---|
| 132 | return base.Apply();
|
---|
| 133 | }
|
---|
| 134 | }
|
---|
| 135 | }
|
---|