1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 |
|
---|
22 | using System.Drawing;
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Common.Resources;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Data;
|
---|
27 | using HeuristicLab.Optimization;
|
---|
28 | using HeuristicLab.Parameters;
|
---|
29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
30 | using HeuristicLab.Scripting;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.Problems.Programmable {
|
---|
33 | [Item("Programmable Problem (multi-objective)", "Represents a multi-objective problem that can be programmed with a script.")]
|
---|
34 | [Creatable(CreatableAttribute.Categories.Problems, Priority = 120)]
|
---|
35 | [StorableClass]
|
---|
36 | public class MultiObjectiveProgrammableProblem<TEncoding, TSolution> : MultiObjectiveProblem<TEncoding, TSolution>, IProgrammableItem, IProgrammableProblem
|
---|
37 | where TEncoding : class, IEncoding<TSolution>
|
---|
38 | where TSolution : class, ISolution {
|
---|
39 | protected static readonly string ENCODING_NAMESPACE = "ENCODING_NAMESPACE";
|
---|
40 | protected static readonly string ENCODING_CLASS = "ENCODING_CLASS";
|
---|
41 | protected static readonly string SOLUTION_CLASS = "SOLUTION_CLASS";
|
---|
42 |
|
---|
43 | public static new Image StaticItemImage {
|
---|
44 | get { return VSImageLibrary.Script; }
|
---|
45 | }
|
---|
46 |
|
---|
47 | private FixedValueParameter<MultiObjectiveProblemDefinitionScript<TEncoding, TSolution>> MultiObjectiveProblemScriptParameter {
|
---|
48 | get { return (FixedValueParameter<MultiObjectiveProblemDefinitionScript<TEncoding, TSolution>>)Parameters["ProblemScript"]; }
|
---|
49 | }
|
---|
50 |
|
---|
51 | Script IProgrammableProblem.ProblemScript {
|
---|
52 | get { return ProblemScript; }
|
---|
53 | }
|
---|
54 | public MultiObjectiveProblemDefinitionScript<TEncoding, TSolution> ProblemScript {
|
---|
55 | get { return MultiObjectiveProblemScriptParameter.Value; }
|
---|
56 | }
|
---|
57 |
|
---|
58 | public IMultiObjectiveProblemDefinition<TEncoding, TSolution> ProblemDefinition {
|
---|
59 | get { return MultiObjectiveProblemScriptParameter.Value; }
|
---|
60 | }
|
---|
61 |
|
---|
62 | [StorableConstructor]
|
---|
63 | protected MultiObjectiveProgrammableProblem(bool deserializing) : base(deserializing) { }
|
---|
64 | protected MultiObjectiveProgrammableProblem(MultiObjectiveProgrammableProblem<TEncoding, TSolution> original, Cloner cloner)
|
---|
65 | : base(original, cloner) {
|
---|
66 | RegisterEvents();
|
---|
67 | }
|
---|
68 |
|
---|
69 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
70 | return new MultiObjectiveProgrammableProblem<TEncoding, TSolution>(this, cloner);
|
---|
71 | }
|
---|
72 |
|
---|
73 | public MultiObjectiveProgrammableProblem()
|
---|
74 | : base() {
|
---|
75 | Parameters.Add(new FixedValueParameter<MultiObjectiveProblemDefinitionScript<TEncoding, TSolution>>("ProblemScript", "Defines the problem.",
|
---|
76 | new MultiObjectiveProblemDefinitionScript<TEncoding, TSolution>() { Name = Name }));
|
---|
77 | ProblemScript.Encoding = (TEncoding)Encoding.Clone();
|
---|
78 |
|
---|
79 | var codeTemplate = ScriptTemplates.MultiObjectiveProblem_Template;
|
---|
80 | codeTemplate = codeTemplate.Replace(ENCODING_NAMESPACE, typeof(TEncoding).Namespace);
|
---|
81 | codeTemplate = codeTemplate.Replace(ENCODING_CLASS, typeof(TEncoding).Name);
|
---|
82 | codeTemplate = codeTemplate.Replace(SOLUTION_CLASS, typeof(TSolution).Name);
|
---|
83 | ProblemScript.Code = codeTemplate;
|
---|
84 |
|
---|
85 | RegisterEvents();
|
---|
86 | }
|
---|
87 |
|
---|
88 | [StorableHook(HookType.AfterDeserialization)]
|
---|
89 | private void AfterDeserialization() {
|
---|
90 | RegisterEvents();
|
---|
91 | }
|
---|
92 |
|
---|
93 | private void RegisterEvents() {
|
---|
94 | ProblemScript.ProblemDefinitionChanged += (o, e) => OnProblemDefinitionChanged();
|
---|
95 | }
|
---|
96 |
|
---|
97 | private void OnProblemDefinitionChanged() {
|
---|
98 | Parameters.Remove("Maximization");
|
---|
99 | Parameters.Add(new ValueParameter<BoolArray>("Maximization", "Set to false if the problem should be minimized.", (BoolArray)new BoolArray(Maximization).AsReadOnly()) { Hidden = true });
|
---|
100 | Encoding = (TEncoding)ProblemScript.Encoding.Clone();
|
---|
101 |
|
---|
102 | OnOperatorsChanged();
|
---|
103 | OnReset();
|
---|
104 | }
|
---|
105 |
|
---|
106 | public override bool[] Maximization {
|
---|
107 | get { return Parameters.ContainsKey("ProblemScript") ? ProblemDefinition.Maximization : new[] { false }; }
|
---|
108 | }
|
---|
109 |
|
---|
110 | public override double[] Evaluate(TSolution individual, IRandom random) {
|
---|
111 | return ProblemDefinition.Evaluate(individual, random);
|
---|
112 | }
|
---|
113 |
|
---|
114 | public override void Analyze(TSolution[] individuals, double[][] qualities, ResultCollection results, IRandom random) {
|
---|
115 | ProblemDefinition.Analyze(individuals, qualities, results, random);
|
---|
116 | }
|
---|
117 | }
|
---|
118 | }
|
---|