[11739] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11739] | 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.Collections.Generic;
|
---|
[11961] | 23 | using System.Drawing;
|
---|
[11984] | 24 | using HeuristicLab.Analysis;
|
---|
[11739] | 25 | using HeuristicLab.Common;
|
---|
[11961] | 26 | using HeuristicLab.Common.Resources;
|
---|
[11739] | 27 | using HeuristicLab.Core;
|
---|
[11996] | 28 | using HeuristicLab.Data;
|
---|
[11739] | 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Parameters;
|
---|
| 31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 32 |
|
---|
[11797] | 33 | namespace HeuristicLab.Problems.Programmable {
|
---|
[11814] | 34 | [Item("Programmable Problem (single-objective)", "Represents a single-objective problem that can be programmed with a script.")]
|
---|
[12504] | 35 | [Creatable(CreatableAttribute.Categories.Problems, Priority = 100)]
|
---|
[11739] | 36 | [StorableClass]
|
---|
[12616] | 37 | public sealed class SingleObjectiveProgrammableProblem : SingleObjectiveBasicProblem<IEncoding>, IProgrammableItem {
|
---|
[11961] | 38 | public static new Image StaticItemImage {
|
---|
| 39 | get { return VSImageLibrary.Script; }
|
---|
| 40 | }
|
---|
[11739] | 41 |
|
---|
| 42 | private FixedValueParameter<SingleObjectiveProblemDefinitionScript> SingleObjectiveProblemScriptParameter {
|
---|
| 43 | get { return (FixedValueParameter<SingleObjectiveProblemDefinitionScript>)Parameters["ProblemScript"]; }
|
---|
| 44 | }
|
---|
| 45 |
|
---|
[11753] | 46 | public SingleObjectiveProblemDefinitionScript ProblemScript {
|
---|
[11739] | 47 | get { return SingleObjectiveProblemScriptParameter.Value; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[11753] | 50 | public ISingleObjectiveProblemDefinition ProblemDefinition {
|
---|
[11739] | 51 | get { return SingleObjectiveProblemScriptParameter.Value; }
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[11814] | 54 | private SingleObjectiveProgrammableProblem(SingleObjectiveProgrammableProblem original, Cloner cloner)
|
---|
[11739] | 55 | : base(original, cloner) {
|
---|
| 56 | RegisterEvents();
|
---|
| 57 | }
|
---|
[11814] | 58 | public override IDeepCloneable Clone(Cloner cloner) { return new SingleObjectiveProgrammableProblem(this, cloner); }
|
---|
[11739] | 59 |
|
---|
| 60 | [StorableConstructor]
|
---|
[11814] | 61 | private SingleObjectiveProgrammableProblem(bool deserializing) : base(deserializing) { }
|
---|
| 62 | public SingleObjectiveProgrammableProblem()
|
---|
[11739] | 63 | : base() {
|
---|
| 64 | Parameters.Add(new FixedValueParameter<SingleObjectiveProblemDefinitionScript>("ProblemScript", "Defines the problem.", new SingleObjectiveProblemDefinitionScript() { Name = Name }));
|
---|
[11984] | 65 | Operators.Add(new BestScopeSolutionAnalyzer());
|
---|
[11739] | 66 | RegisterEvents();
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 70 | private void AfterDeserialization() {
|
---|
| 71 | RegisterEvents();
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | private void RegisterEvents() {
|
---|
| 75 | ProblemScript.ProblemDefinitionChanged += (o, e) => OnProblemDefinitionChanged();
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | private void OnProblemDefinitionChanged() {
|
---|
[12002] | 79 | Parameters.Remove("Maximization");
|
---|
[11996] | 80 | Parameters.Add(new FixedValueParameter<BoolValue>("Maximization", "Set to false if the problem should be minimized.", (BoolValue)new BoolValue(Maximization).AsReadOnly()) { Hidden = true });
|
---|
| 81 |
|
---|
[11753] | 82 | Encoding = ProblemDefinition.Encoding;
|
---|
[11996] | 83 | OnOperatorsChanged();
|
---|
| 84 | OnReset();
|
---|
[11739] | 85 | }
|
---|
| 86 |
|
---|
| 87 | public override bool Maximization {
|
---|
[11998] | 88 | get { return Parameters.ContainsKey("ProblemScript") ? ProblemDefinition.Maximization : false; }
|
---|
[11739] | 89 | }
|
---|
| 90 |
|
---|
| 91 | public override double Evaluate(Individual individual, IRandom random) {
|
---|
| 92 | return ProblemDefinition.Evaluate(individual, random);
|
---|
| 93 | }
|
---|
| 94 |
|
---|
[11880] | 95 | public override void Analyze(Individual[] individuals, double[] qualities, ResultCollection results, IRandom random) {
|
---|
| 96 | ProblemDefinition.Analyze(individuals, qualities, results, random);
|
---|
[11739] | 97 | }
|
---|
| 98 | public override IEnumerable<Individual> GetNeighbors(Individual individual, IRandom random) {
|
---|
| 99 | return ProblemDefinition.GetNeighbors(individual, random);
|
---|
| 100 | }
|
---|
| 101 | }
|
---|
| 102 | }
|
---|