Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/SingleObjectiveAnalyzer.cs @ 11396

Last change on this file since 11396 was 11396, checked in by abeham, 10 years ago

#2174:

  • Added analyzer operator that will call into the analyze function
  • Added helper class for creating a parameter vector
  • Added parameters to the interfaces and improved wiring
File size: 3.1 KB
Line 
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 {
13  [Item("Single-objective Analyzer", "Calls the script's Analyze method to be able to write into the results collection.")]
14  [StorableClass]
15  public class SingleObjectiveAnalyzer : SingleSuccessorOperator, ISingleObjectiveProgrammableProblemAnalyzer {
16    public bool EnabledByDefault { get { return true; } }
17
18    public ILookupParameter<ISingleObjectiveProblemDefinitionHost> ProblemDefinitionParameter {
19      get { return (ILookupParameter<ISingleObjectiveProblemDefinitionHost>)Parameters["ProblemDefinition"]; }
20    }
21
22    public ILookupParameter<Configuration> ConfigurationParameter {
23      get { return (ILookupParameter<Configuration>)Parameters["Configuration"]; }
24    }
25
26    public IScopeTreeLookupParameter<DoubleValue> QualityParameter {
27      get { return (IScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
28    }
29
30    public ILookupParameter<ResultCollection> ResultsParameter {
31      get { return (ILookupParameter<ResultCollection>)Parameters["Results"]; }
32    }
33
34    [StorableConstructor]
35    protected SingleObjectiveAnalyzer(bool deserializing) : base(deserializing) { }
36    protected SingleObjectiveAnalyzer(SingleObjectiveAnalyzer original, Cloner cloner) : base(original, cloner) { }
37    public SingleObjectiveAnalyzer() {
38      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
39      Parameters.Add(new LookupParameter<ISingleObjectiveProblemDefinitionHost>("ProblemDefinition", "The host that holds the problem definition."));
40      Parameters.Add(new LookupParameter<Configuration>("Configuration", "An item that holds the problem's configuration."));
41      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The quality of the parameter vector."));
42      Parameters.Add(new LookupParameter<ResultCollection>("Results", "The results collection to write to."));
43    }
44
45    public override IDeepCloneable Clone(Cloner cloner) {
46      return new SingleObjectiveAnalyzer(this, cloner);
47    }
48
49    public override IOperation Apply() {
50      var host = ProblemDefinitionParameter.ActualValue;
51      if (host.Instance == null) throw new InvalidOperationException("Script instance is null, maybe the code doesn't compile.");
52      var config = ConfigurationParameter.ActualValue;
53      var results = ResultsParameter.ActualValue;
54
55      IEnumerable<IScope> scopes = new[] { ExecutionContext.Scope };
56      for (var i = 0; i < QualityParameter.Depth; i++)
57        scopes = scopes.Select(x => (IEnumerable<IScope>)x.SubScopes).Aggregate((a, b) => a.Concat(b));
58
59      var vectors = scopes.Select(scope => Helper.Extract(scope, config)).ToArray();
60      host.Instance.Analyze(vectors, QualityParameter.ActualValue.Select(x => x.Value).ToArray(), results);
61      return base.Apply();
62    }
63  }
64}
Note: See TracBrowser for help on using the repository browser.