1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2016 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 HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Optimization;
|
---|
26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
27 | using System;
|
---|
28 | using System.Collections.Generic;
|
---|
29 | using System.Linq;
|
---|
30 | using System.Threading;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.Analysis.FitnessLandscape {
|
---|
33 | [Item("Up/Down Walk Calculator", "Calculates characteristics from an up/down walk.")]
|
---|
34 | [StorableClass]
|
---|
35 | public class UpDownWalkCalculator : NamedItem, ICharacteristicCalculator {
|
---|
36 |
|
---|
37 | [Storable]
|
---|
38 | private IProblem problem;
|
---|
39 | public IProblem Problem {
|
---|
40 | get { return problem; }
|
---|
41 | set {
|
---|
42 | if (problem == value) return;
|
---|
43 | problem = value;
|
---|
44 | var soProblem = problem as ISingleObjectiveHeuristicOptimizationProblem;
|
---|
45 | walker.Problem = soProblem;
|
---|
46 | }
|
---|
47 | }
|
---|
48 |
|
---|
49 | [Storable]
|
---|
50 | private UpDownWalk walker;
|
---|
51 |
|
---|
52 | [StorableConstructor]
|
---|
53 | private UpDownWalkCalculator(bool deserializing) : base(deserializing) { }
|
---|
54 | private UpDownWalkCalculator(UpDownWalkCalculator original, Cloner cloner)
|
---|
55 | : base(original, cloner) {
|
---|
56 | problem = cloner.Clone(original.problem);
|
---|
57 | walker = cloner.Clone(original.walker);
|
---|
58 | characteristics = cloner.Clone(original.characteristics);
|
---|
59 | }
|
---|
60 | public UpDownWalkCalculator() {
|
---|
61 | Name = ItemName;
|
---|
62 | Description = ItemDescription;
|
---|
63 | walker = new UpDownWalk();
|
---|
64 | characteristics = new CheckedItemList<StringValue>(
|
---|
65 | new[] { "AutoCorrelation1", "CorrelationLength", "InformationContent",
|
---|
66 | "PartialInformationContent", "DensityBasinInformation", "InformationStability",
|
---|
67 | "Diversity", "Regularity", "TotalEntropy", "PeakInformationContent",
|
---|
68 | "PeakDensityBasinInformation", "DownWalkLength", "UpWalkLength", "UpWalkLenVar",
|
---|
69 | "DownWalkLenVar", "LowerVariance", "UpperVariance" }.Select(x => new StringValue(x)));
|
---|
70 | }
|
---|
71 |
|
---|
72 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
73 | return new UpDownWalkCalculator(this, cloner);
|
---|
74 | }
|
---|
75 |
|
---|
76 | private CheckedItemList<StringValue> characteristics;
|
---|
77 | public ReadOnlyCheckedItemList<StringValue> Characteristics {
|
---|
78 | get { return characteristics.AsReadOnly(); }
|
---|
79 | }
|
---|
80 |
|
---|
81 | public bool CanCalculate() {
|
---|
82 | return Problem is ISingleObjectiveHeuristicOptimizationProblem
|
---|
83 | && Problem.Operators.Any(x => x is IManipulator);
|
---|
84 | }
|
---|
85 |
|
---|
86 | public IEnumerable<IResult> Calculate() {
|
---|
87 | walker.Prepare(true);
|
---|
88 | using (var waitHandle = new AutoResetEvent(false)) {
|
---|
89 | EventHandler evHandle = (sender, e) => {
|
---|
90 | if (walker.ExecutionState == ExecutionState.Paused
|
---|
91 | || walker.ExecutionState == ExecutionState.Stopped) waitHandle.Set();
|
---|
92 | };
|
---|
93 | walker.ExecutionStateChanged += evHandle;
|
---|
94 | walker.Start();
|
---|
95 | waitHandle.WaitOne();
|
---|
96 | walker.ExecutionStateChanged -= evHandle;
|
---|
97 | }
|
---|
98 | foreach (var p in characteristics.CheckedItems) {
|
---|
99 | yield return new Result("UpDownWalk." + walker.MutatorParameter.Value.Name + "." + p.Value.Value, walker.Results[p.Value.Value].Value);
|
---|
100 | }
|
---|
101 | walker.Prepare(true);
|
---|
102 | }
|
---|
103 |
|
---|
104 | public void CollectParameterValues(IDictionary<string, IItem> values) {
|
---|
105 | walker.CollectParameterValues(values);
|
---|
106 | }
|
---|
107 |
|
---|
108 | public IKeyedItemCollection<string, IParameter> Parameters {
|
---|
109 | get { return ((IParameterizedItem)walker).Parameters; }
|
---|
110 | }
|
---|
111 | }
|
---|
112 | }
|
---|