1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using HeuristicLab.Common;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 | using HeuristicLab.Data;
|
---|
7 | using HeuristicLab.Operators;
|
---|
8 | using HeuristicLab.Optimization;
|
---|
9 | using HeuristicLab.Parameters;
|
---|
10 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
11 |
|
---|
12 | namespace HeuristicLab.Problems.Programmable {
|
---|
13 | [Item("Multi-objective Analyzer", "Calls the Analyze method of the problem definition.")]
|
---|
14 | [StorableClass]
|
---|
15 | public class MultiObjectiveAnalyzer : SingleSuccessorOperator, IMultiObjectiveProgrammableProblemAnalyzer {
|
---|
16 | public bool EnabledByDefault { get { return true; } }
|
---|
17 |
|
---|
18 | public ILookupParameter<IMultiObjectiveProblemDefinition> ProblemDefinitionParameter {
|
---|
19 | get { return (ILookupParameter<IMultiObjectiveProblemDefinition>)Parameters["ProblemDefinition"]; }
|
---|
20 | }
|
---|
21 |
|
---|
22 | public ILookupParameter<IEncoding> EncodingParameter {
|
---|
23 | get { return (ILookupParameter<IEncoding>)Parameters["Encoding"]; }
|
---|
24 | }
|
---|
25 |
|
---|
26 | public IScopeTreeLookupParameter<DoubleArray> QualitiesParameter {
|
---|
27 | get { return (IScopeTreeLookupParameter<DoubleArray>)Parameters["Qualities"]; }
|
---|
28 | }
|
---|
29 |
|
---|
30 | public ILookupParameter<ResultCollection> ResultsParameter {
|
---|
31 | get { return (ILookupParameter<ResultCollection>)Parameters["Results"]; }
|
---|
32 | }
|
---|
33 |
|
---|
34 | [StorableConstructor]
|
---|
35 | protected MultiObjectiveAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
36 | protected MultiObjectiveAnalyzer(MultiObjectiveAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
37 | public MultiObjectiveAnalyzer() {
|
---|
38 | Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
|
---|
39 | Parameters.Add(new LookupParameter<IMultiObjectiveProblemDefinition>("ProblemDefinition", "The host that holds the problem definition."));
|
---|
40 | Parameters.Add(new LookupParameter<IEncoding>("Encoding", "An item that holds the problem's encoding."));
|
---|
41 | Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The qualities 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 MultiObjectiveAnalyzer(this, cloner);
|
---|
47 | }
|
---|
48 |
|
---|
49 | public override IOperation Apply() {
|
---|
50 | var definition = ProblemDefinitionParameter.ActualValue;
|
---|
51 | if (definition == null) throw new InvalidOperationException("Problem definition is null.");
|
---|
52 | var config = EncodingParameter.ActualValue;
|
---|
53 | var results = ResultsParameter.ActualValue;
|
---|
54 |
|
---|
55 | IEnumerable<IScope> scopes = new[] { ExecutionContext.Scope };
|
---|
56 | for (var i = 0; i < QualitiesParameter.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 | definition.Analyze(vectors, QualitiesParameter.ActualValue.Select(x => x.ToArray()).ToArray(), results);
|
---|
61 | return base.Apply();
|
---|
62 | }
|
---|
63 | }
|
---|
64 | }
|
---|