Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Problems.Knapsack/3.3/Evaluators/KnapsackEvaluator.cs @ 5124

Last change on this file since 5124 was 3537, checked in by svonolfe, 14 years ago

Implemented reviewers comments for the KnapsackProblem (#917)

File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Encodings.BinaryVectorEncoding;
28using HeuristicLab.Operators;
29using System;
30
31namespace HeuristicLab.Problems.Knapsack {
32  /// <summary>
33  /// A base class for operators which evaluates Knapsack solutions given in BinaryVector encoding.
34  /// </summary>
35  [Item("KnapsackEvaluator", "Evaluates solutions for the Knapsack problem.")]
36  [StorableClass]
37  public class KnapsackEvaluator : SingleSuccessorOperator, IKnapsackEvaluator {
38    public ILookupParameter<DoubleValue> QualityParameter {
39      get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
40    }
41
42    public ILookupParameter<DoubleValue> SumWeightsParameter {
43      get { return (ILookupParameter<DoubleValue>)Parameters["SumWeights"]; }
44    }
45
46    public ILookupParameter<DoubleValue> SumValuesParameter {
47      get { return (ILookupParameter<DoubleValue>)Parameters["SumValues"]; }
48    }
49
50    public ILookupParameter<DoubleValue> AppliedPenaltyParameter {
51      get { return (ILookupParameter<DoubleValue>)Parameters["AppliedPenalty"]; }
52    }
53   
54    public ILookupParameter<BinaryVector> BinaryVectorParameter {
55      get { return (ILookupParameter<BinaryVector>)Parameters["BinaryVector"]; }
56    }
57
58    public ILookupParameter<IntValue> KnapsackCapacityParameter {
59      get { return (ILookupParameter<IntValue>)Parameters["KnapsackCapacity"]; }
60    }
61    public ILookupParameter<DoubleValue> PenaltyParameter {
62      get { return (ILookupParameter<DoubleValue>)Parameters["Penalty"]; }
63    }
64    public ILookupParameter<IntArray> WeightsParameter {
65      get { return (ILookupParameter<IntArray>)Parameters["Weights"]; }
66    }
67    public ILookupParameter<IntArray> ValuesParameter {
68      get { return (ILookupParameter<IntArray>)Parameters["Values"]; }
69    }
70
71    public KnapsackEvaluator()
72      : base() {
73      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The evaluated quality of the OneMax solution."));
74      Parameters.Add(new LookupParameter<DoubleValue>("SumWeights", "The evaluated quality of the OneMax solution."));
75      Parameters.Add(new LookupParameter<DoubleValue>("SumValues", "The evaluated quality of the OneMax solution."));
76      Parameters.Add(new LookupParameter<DoubleValue>("AppliedPenalty", "The evaluated quality of the OneMax solution."));
77      Parameters.Add(new LookupParameter<BinaryVector>("BinaryVector", "The OneMax solution given in path representation which should be evaluated."));
78      Parameters.Add(new LookupParameter<IntValue>("KnapsackCapacity", "Capacity of the Knapsack."));
79      Parameters.Add(new LookupParameter<IntArray>("Weights", "The weights of the items."));
80      Parameters.Add(new LookupParameter<IntArray>("Values", "The values of the items."));
81      Parameters.Add(new LookupParameter<DoubleValue>("Penalty", "The penalty value for each unit of overweight."));
82    }
83
84    public struct KnapsackEvaluation {
85      public DoubleValue Quality;
86      public DoubleValue SumWeights;
87      public DoubleValue SumValues;
88      public DoubleValue AppliedPenalty;
89    }
90
91    public static KnapsackEvaluation Apply(BinaryVector v, IntValue capacity, DoubleValue penalty, IntArray weights, IntArray values) {
92      if (weights.Length != values.Length)
93        throw new InvalidOperationException("The weights and values parameters of the Knapsack problem have different sizes");
94
95      KnapsackEvaluation result = new KnapsackEvaluation();
96
97      double quality = 0;
98
99      int weight = 0;
100      int value = 0;
101      double appliedPenalty = 0;
102
103      for (int i = 0; i < v.Length; i++) {
104        if (v[i]) {
105          weight += weights[i];
106          value += values[i];
107        }
108      }
109
110      if (weight > capacity.Value) {
111        appliedPenalty = penalty.Value * (weight - capacity.Value);
112      }
113
114      quality =  value - appliedPenalty;
115
116      result.AppliedPenalty = new DoubleValue(appliedPenalty);
117      result.SumWeights = new DoubleValue(weight);
118      result.SumValues = new DoubleValue(value);
119      result.Quality = new DoubleValue(quality);
120
121      return result;
122    }
123
124    public sealed override IOperation Apply() {
125      BinaryVector v = BinaryVectorParameter.ActualValue;
126
127      KnapsackEvaluation evaluation = Apply(BinaryVectorParameter.ActualValue,
128        KnapsackCapacityParameter.ActualValue,
129        PenaltyParameter.ActualValue,
130        WeightsParameter.ActualValue,
131        ValuesParameter.ActualValue);
132
133      QualityParameter.ActualValue = evaluation.Quality;
134      SumWeightsParameter.ActualValue = evaluation.SumWeights;
135      SumValuesParameter.ActualValue = evaluation.SumValues;
136      AppliedPenaltyParameter.ActualValue = evaluation.AppliedPenalty;
137
138      return base.Apply();
139    }
140  }
141}
Note: See TracBrowser for help on using the repository browser.