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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Optimization;
|
---|
27 | using HeuristicLab.Data;
|
---|
28 | using HeuristicLab.Core;
|
---|
29 | using HeuristicLab.Operators;
|
---|
30 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
31 | using HeuristicLab.Parameters;
|
---|
32 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
33 |
|
---|
34 | namespace HeuristicLab.Problems.TestFunctions.Analyzers {
|
---|
35 | /// <summary>
|
---|
36 | /// An operator for analyzing the best solution for a SingleObjectiveTestFunction problem.
|
---|
37 | /// </summary>
|
---|
38 | [Item("BestSingleObjectiveTestFunctionSolutionAnalyzer", "An operator for analyzing the best solution for a SingleObjectiveTestFunction problem.")]
|
---|
39 | [StorableClass]
|
---|
40 | class BestSingleObjectiveTestFunctionSolutionAnalyzer : SingleSuccessorOperator, IBestSingleObjectiveTestFunctionSolutionAnalyzer, IAnalyzer {
|
---|
41 |
|
---|
42 | public ILookupParameter<RealVector> RealVectorParameter {
|
---|
43 | get { return (ILookupParameter<RealVector>)Parameters["RealVector"]; }
|
---|
44 | }
|
---|
45 | ILookupParameter IBestSingleObjectiveTestFunctionSolutionAnalyzer.RealVectorParameter {
|
---|
46 | get { return RealVectorParameter; }
|
---|
47 | }
|
---|
48 | public ILookupParameter<DoubleValue> QualityParameter {
|
---|
49 | get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
50 | }
|
---|
51 | ILookupParameter IBestSingleObjectiveTestFunctionSolutionAnalyzer.QualityParameter {
|
---|
52 | get { return QualityParameter; }
|
---|
53 | }
|
---|
54 | public ILookupParameter<SingleObjectiveTestFunctionSolution> BestSolutionParameter {
|
---|
55 | get { return (ILookupParameter<SingleObjectiveTestFunctionSolution>)Parameters["BestSolution"]; }
|
---|
56 | }
|
---|
57 | public IValueLookupParameter<ResultCollection> ResultsParameter {
|
---|
58 | get { return (IValueLookupParameter<ResultCollection>)Parameters["Results"]; }
|
---|
59 | }
|
---|
60 |
|
---|
61 | public BestSingleObjectiveTestFunctionSolutionAnalyzer()
|
---|
62 | : base() {
|
---|
63 | Parameters.Add(new LookupParameter<RealVector>("RealVector", "The SingleObjectiveTestFunction solutions from which the best solution should be visualized."));
|
---|
64 |
|
---|
65 | Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The qualities of the SingleObjectiveTestFunction solutions which should be visualized."));
|
---|
66 | Parameters.Add(new LookupParameter<SingleObjectiveTestFunctionSolution>("BestSolution", "The best SingleObjectiveTestFunction solution."));
|
---|
67 | Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the SingleObjectiveTestFunction solution should be stored."));
|
---|
68 | }
|
---|
69 |
|
---|
70 | public override IOperation Apply() {
|
---|
71 | RealVector RealVector = RealVectorParameter.ActualValue;
|
---|
72 | DoubleValue quality = QualityParameter.ActualValue;
|
---|
73 | ResultCollection results = ResultsParameter.ActualValue;
|
---|
74 |
|
---|
75 | SingleObjectiveTestFunctionSolution solution = BestSolutionParameter.ActualValue;
|
---|
76 | if (solution == null) {
|
---|
77 | solution = new SingleObjectiveTestFunctionSolution(RealVector, QualityParameter.ActualValue);
|
---|
78 | BestSolutionParameter.ActualValue = solution;
|
---|
79 | results.Add(new Result("Best SingleObjectiveTestFunction Solution", solution));
|
---|
80 | } else {
|
---|
81 | solution.RealVector = RealVector;
|
---|
82 | solution.Quality = QualityParameter.ActualValue;
|
---|
83 |
|
---|
84 | results["Best SingleObjectiveTestFunction Solution"].Value = solution;
|
---|
85 | }
|
---|
86 |
|
---|
87 | return base.Apply();
|
---|
88 | }
|
---|
89 | }
|
---|
90 | }
|
---|