Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/BasicMultiObjectiveQualityAnalyzer.cs @ 4184

Last change on this file since 4184 was 4086, checked in by abeham, 14 years ago

#1040

  • Added a very very basic analyzer for listing the qualities on the pareto front
File size: 3.2 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      int objectives = qualities[0].Length;
59      int frontSize = ranks.Count(x => x.Value == 0);
60
61      DoubleMatrix front = new DoubleMatrix(frontSize, objectives);
62      int counter = 0;
63      for (int i = 0; i < ranks.Length; i++) {
64        if (ranks[i].Value == 0) {
65          for (int k = 0; k < objectives; k++)
66            front[counter, k] = qualities[i][k];
67          counter++;
68        }
69      }
70
71      if (results.ContainsKey("Pareto Front"))
72        results["Pareto Front"].Value = front;
73      else results.Add(new Result("Pareto Front", front));
74
75      return base.Apply();
76    }
77  }
78}
Note: See TracBrowser for help on using the repository browser.