Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/SingleObjectiveProblem.cs @ 13404

Last change on this file since 13404 was 13404, checked in by abeham, 8 years ago

#2521:

  • Adapted Knapsack problem to new problem infrastructure
  • Introduced additional interfaces in binary vector encoding
  • Improved KnapsackImprovementOperator which requires less evaluated solutions in case of an infeasible start solution

Loosely related change:

  • All LookupParameters are now shown by default
  • Wiring code should make sure that wired parameters are hidden
File size: 5.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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 System.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Optimization {
31  [StorableClass]
32  public abstract class SingleObjectiveProblem<TEncoding, TSolution> :
33    Problem<TEncoding, TSolution, SingleObjectiveEvaluator<TSolution>>,
34    ISingleObjectiveProblem<TEncoding, TSolution>,
35    ISingleObjectiveProblemDefinition<TEncoding, TSolution>
36    where TEncoding : class, IEncoding<TSolution>
37    where TSolution : class, ISolution {
38
39    protected IValueParameter<DoubleValue> BestKnownQualityParameter {
40      get { return (IValueParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
41    }
42
43    protected IFixedValueParameter<BoolValue> MaximizationParameter {
44      get { return (IFixedValueParameter<BoolValue>)Parameters["Maximization"]; }
45    }
46
47    public double BestKnownQuality {
48      get {
49        if (BestKnownQualityParameter.Value == null) return double.NaN;
50        return BestKnownQualityParameter.Value.Value;
51      }
52      set {
53        if (BestKnownQualityParameter.Value == null) BestKnownQualityParameter.Value = new DoubleValue(value);
54        else BestKnownQualityParameter.Value.Value = value;
55      }
56    }
57
58    [StorableConstructor]
59    protected SingleObjectiveProblem(bool deserializing) : base(deserializing) { }
60
61    protected SingleObjectiveProblem(SingleObjectiveProblem<TEncoding, TSolution> original, Cloner cloner)
62      : base(original, cloner) {
63      ParameterizeOperators();
64    }
65
66    protected SingleObjectiveProblem()
67      : base() {
68      Parameters.Add(new FixedValueParameter<BoolValue>("Maximization", "Set to false if the problem should be minimized.", (BoolValue)new BoolValue(Maximization).AsReadOnly()) { Hidden = true });
69      Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this problem."));
70
71      Operators.Add(Evaluator);
72      Operators.Add(new SingleObjectiveAnalyzer<TSolution>());
73      Operators.Add(new SingleObjectiveImprover<TSolution>());
74      Operators.Add(new SingleObjectiveMoveEvaluator<TSolution>());
75      Operators.Add(new SingleObjectiveMoveGenerator<TSolution>());
76      Operators.Add(new SingleObjectiveMoveMaker<TSolution>());
77
78      ParameterizeOperators();
79    }
80
81    protected SingleObjectiveProblem(TEncoding encoding)
82      : base(encoding) {
83      Parameters.Add(new FixedValueParameter<BoolValue>("Maximization", "Set to false if the problem should be minimized.", (BoolValue)new BoolValue(Maximization).AsReadOnly()) { Hidden = true });
84      Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this problem."));
85
86      Operators.Add(Evaluator);
87      Operators.Add(new SingleObjectiveAnalyzer<TSolution>());
88      Operators.Add(new SingleObjectiveImprover<TSolution>());
89      Operators.Add(new SingleObjectiveMoveEvaluator<TSolution>());
90      Operators.Add(new SingleObjectiveMoveGenerator<TSolution>());
91      Operators.Add(new SingleObjectiveMoveMaker<TSolution>());
92
93      ParameterizeOperators();
94    }
95
96    [StorableHook(HookType.AfterDeserialization)]
97    private void AfterDeserialization() {
98      ParameterizeOperators();
99    }
100
101    public abstract bool Maximization { get; }
102    public abstract double Evaluate(TSolution solution, IRandom random);
103    public virtual void Analyze(TSolution[] solutions, double[] qualities, ResultCollection results, IRandom random) { }
104    public virtual IEnumerable<TSolution> GetNeighbors(TSolution solution, IRandom random) {
105      return Enumerable.Empty<TSolution>();
106    }
107
108    public virtual bool IsBetter(double quality, double bestQuality) {
109      return (Maximization && quality > bestQuality || !Maximization && quality < bestQuality);
110    }
111
112    protected override void OnEvaluatorChanged() {
113      base.OnEvaluatorChanged();
114      ParameterizeOperators();
115    }
116
117    private void ParameterizeOperators() {
118      foreach (var op in Operators.OfType<ISingleObjectiveEvaluationOperator<TSolution>>())
119        op.EvaluateFunc = Evaluate;
120      foreach (var op in Operators.OfType<ISingleObjectiveAnalysisOperator<TSolution>>())
121        op.AnalyzeAction = Analyze;
122      foreach (var op in Operators.OfType<INeighborBasedOperator<TSolution>>())
123        op.GetNeighborsFunc = GetNeighbors;
124    }
125
126    #region ISingleObjectiveHeuristicOptimizationProblem Members
127    IParameter ISingleObjectiveHeuristicOptimizationProblem.MaximizationParameter {
128      get { return Parameters["Maximization"]; }
129    }
130    IParameter ISingleObjectiveHeuristicOptimizationProblem.BestKnownQualityParameter {
131      get { return Parameters["BestKnownQuality"]; }
132    }
133    ISingleObjectiveEvaluator ISingleObjectiveHeuristicOptimizationProblem.Evaluator {
134      get { return Evaluator; }
135    }
136    #endregion
137  }
138}
Note: See TracBrowser for help on using the repository browser.