Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/MultiObjectiveAnalyzer.cs @ 11739

Last change on this file since 11739 was 11739, checked in by mkommend, 9 years ago

#2174: Worked on operators and programmable problem base classes and scripts.

File size: 2.6 KB
RevLine 
[11400]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using HeuristicLab.Common;
5using HeuristicLab.Core;
6using HeuristicLab.Data;
7using HeuristicLab.Operators;
8using HeuristicLab.Optimization;
9using HeuristicLab.Parameters;
10using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
11
12namespace HeuristicLab.Problems.Programmable {
[11484]13  [Item("Multi-objective Analyzer", "Calls the Analyze method of the problem definition.")]
[11400]14  [StorableClass]
[11739]15  public class MultiObjectiveAnalyzer : SingleSuccessorOperator, IMultiObjectiveAnalysisOperator {
[11400]16    public bool EnabledByDefault { get { return true; } }
17
[11559]18    public ILookupParameter<IEncoding> EncodingParameter {
19      get { return (ILookupParameter<IEncoding>)Parameters["Encoding"]; }
[11400]20    }
21
22    public IScopeTreeLookupParameter<DoubleArray> QualitiesParameter {
23      get { return (IScopeTreeLookupParameter<DoubleArray>)Parameters["Qualities"]; }
24    }
25
26    public ILookupParameter<ResultCollection> ResultsParameter {
27      get { return (ILookupParameter<ResultCollection>)Parameters["Results"]; }
28    }
29
[11739]30    public Action<Individual[], double[][], ResultCollection> AnalyzeAction { get; set; }
31
[11400]32    [StorableConstructor]
33    protected MultiObjectiveAnalyzer(bool deserializing) : base(deserializing) { }
34    protected MultiObjectiveAnalyzer(MultiObjectiveAnalyzer original, Cloner cloner) : base(original, cloner) { }
35    public MultiObjectiveAnalyzer() {
36      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
[11559]37      Parameters.Add(new LookupParameter<IEncoding>("Encoding", "An item that holds the problem's encoding."));
[11400]38      Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The qualities of the parameter vector."));
39      Parameters.Add(new LookupParameter<ResultCollection>("Results", "The results collection to write to."));
40    }
41
42    public override IDeepCloneable Clone(Cloner cloner) {
43      return new MultiObjectiveAnalyzer(this, cloner);
44    }
45
46    public override IOperation Apply() {
[11598]47      var encoding = EncodingParameter.ActualValue;
[11400]48      var results = ResultsParameter.ActualValue;
49
50      IEnumerable<IScope> scopes = new[] { ExecutionContext.Scope };
51      for (var i = 0; i < QualitiesParameter.Depth; i++)
52        scopes = scopes.Select(x => (IEnumerable<IScope>)x.SubScopes).Aggregate((a, b) => a.Concat(b));
53
[11619]54      var individuals = scopes.Select(encoding.GetIndividual).ToArray();
[11739]55      AnalyzeAction(individuals, QualitiesParameter.ActualValue.Select(x => x.ToArray()).ToArray(), results);
[11400]56      return base.Apply();
57    }
58  }
59}
Note: See TracBrowser for help on using the repository browser.