[13583] | 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 |
|
---|
[16958] | 22 | using HEAL.Attic;
|
---|
[13583] | 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Parameters;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Analysis.FitnessLandscape {
|
---|
| 29 | [Item("Up/Down Walk", "An up/down walk attempts to take the best of the sample until no better can be found and then switch to take the worse until no worse can be found.")]
|
---|
[16958] | 30 | [StorableType("81877EC4-294E-474A-8E48-6E37D0B702BC")]
|
---|
[13583] | 31 | [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 302)]
|
---|
| 32 | public sealed class UpDownWalk : LocalAnalysis<UpDownSelector> {
|
---|
| 33 |
|
---|
| 34 | public IFixedValueParameter<IntValue> SampleSizeParameter {
|
---|
| 35 | get { return (IFixedValueParameter<IntValue>)Parameters["SampleSize"]; }
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | [StorableConstructor]
|
---|
[16958] | 39 | private UpDownWalk(StorableConstructorFlag _) : base(_) { }
|
---|
[13583] | 40 | private UpDownWalk(UpDownWalk original, Cloner cloner) : base(original, cloner) { }
|
---|
| 41 | public UpDownWalk()
|
---|
| 42 | : base(new UpDownSelector()) {
|
---|
| 43 | Parameters.Add(new FixedValueParameter<IntValue>("SampleSize", "Number of moves that MultiMoveGenerators should create. This is ignored for Exhaustive- and SingleMoveGenerators.", new IntValue(10)));
|
---|
| 44 |
|
---|
| 45 | VariableCreator.CollectedValues.Add(new ValueParameter<BoolValue>("MoveTowardsOptimum", new BoolValue(true)));
|
---|
| 46 | VariableCreator.CollectedValues.Add(new ValueParameter<DoubleValue>("BaseQuality", new DoubleValue(double.NaN)));
|
---|
| 47 |
|
---|
| 48 | SelectorParameter.Value.BaseQualityParameter.ActualName = "BaseQuality";
|
---|
| 49 | SelectorParameter.Value.MoveTowardsOptimumParameter.ActualName = "MoveTowardsOptimum";
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | protected override void Parameterize() {
|
---|
| 53 | base.Parameterize();
|
---|
| 54 | if (Problem == null) return;
|
---|
| 55 | SelectorParameter.Value.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 59 | return new UpDownWalk(this, cloner);
|
---|
| 60 | }
|
---|
| 61 | }
|
---|
| 62 | }
|
---|