Free cookie consent management tool by TermsFeed Policy Generator

source: branches/NSGA2/HeuristicLab.Algorithms.NSGA2/3.3/BasicMultiObjectiveQualityAnalyzer.cs @ 4893

Last change on this file since 4893 was 4601, checked in by abeham, 14 years ago

#1040

  • Updated BasicMultiObjectiveQualityAnalyzer to add the scopes of the pareto front as a result object
File size: 3.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 System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Operators;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Core;
29using HeuristicLab.Data;
30using HeuristicLab.Optimization;
31using HeuristicLab.Parameters;
32
33namespace HeuristicLab.Algorithms.NSGA2 {
34  [Item("BasicMultiObjectiveSolutionAnalyzer", "Basic analyzer for multiobjective problems that collects and presents the current pareto front as double matrix.")]
35  [StorableClass]
36  public class BasicMultiObjectiveQualityAnalyzer : SingleSuccessorOperator, IAnalyzer {
37    public IScopeTreeLookupParameter<IntValue> RankParameter {
38      get { return (IScopeTreeLookupParameter<IntValue>)Parameters["Rank"]; }
39    }
40    public IScopeTreeLookupParameter<DoubleArray> QualitiesParameter {
41      get { return (IScopeTreeLookupParameter<DoubleArray>)Parameters["Qualities"]; }
42    }
43    public ILookupParameter<ResultCollection> ResultsParameter {
44      get { return (ILookupParameter<ResultCollection>)Parameters["Results"]; }
45    }
46
47    public BasicMultiObjectiveQualityAnalyzer() {
48      Parameters.Add(new ScopeTreeLookupParameter<IntValue>("Rank", "The rank of solution describes to which front it belongs."));
49      Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The vector of qualities of each solution."));
50      Parameters.Add(new LookupParameter<ResultCollection>("Results", "The result collection to store the front to."));
51    }
52
53    public override IOperation Apply() {
54      ItemArray<IntValue> ranks = RankParameter.ActualValue;
55      ItemArray<DoubleArray> qualities = QualitiesParameter.ActualValue;
56      ResultCollection results = ResultsParameter.ActualValue;
57     
58      bool populationLevel = RankParameter.Depth == 1;
59
60      int objectives = qualities[0].Length;
61      int frontSize = ranks.Count(x => x.Value == 0);
62      ItemArray<IScope> paretoArchive = null;
63      if (populationLevel) paretoArchive = new ItemArray<IScope>(frontSize);
64
65      DoubleMatrix front = new DoubleMatrix(frontSize, objectives);
66      int counter = 0;
67      for (int i = 0; i < ranks.Length; i++) {
68        if (ranks[i].Value == 0) {
69          for (int k = 0; k < objectives; k++)
70            front[counter, k] = qualities[i][k];
71          if (populationLevel) {
72            paretoArchive[counter] = (IScope)ExecutionContext.Scope.SubScopes[i].Clone();
73          }
74          counter++;
75        }
76      }
77
78      if (results.ContainsKey("Pareto Front"))
79        results["Pareto Front"].Value = front;
80      else results.Add(new Result("Pareto Front", front));
81
82      if (populationLevel) {
83        if (results.ContainsKey("Pareto Archive"))
84          results["Pareto Archive"].Value = paretoArchive;
85        else results.Add(new Result("Pareto Archive", paretoArchive));
86      }
87      return base.Apply();
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.