Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/AdaptiveWalk.cs @ 17975

Last change on this file since 17975 was 16728, checked in by abeham, 6 years ago

#1614: updated to new persistence and .NET 4.6.1

File size: 2.5 KB
RevLine 
[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
[16728]22using System.Linq;
23using HEAL.Attic;
[13583]24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28using HeuristicLab.Selection;
29
30namespace HeuristicLab.Analysis.FitnessLandscape {
31  [Item("Adaptive Walk", "An adaptive walk applies a certain manipulation operation always taking the best of the sample.")]
[16728]32  [StorableType("33CED2EA-C779-4109-976C-CF1F9E6D2826")]
[13583]33  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 303)]
34  public sealed class AdaptiveWalk : LocalAnalysis<BestSelector> {
35
36    public IFixedValueParameter<IntValue> SampleSizeParameter {
37      get { return (IFixedValueParameter<IntValue>)Parameters["SampleSize"]; }
38    }
39
40    [StorableConstructor]
[16728]41    private AdaptiveWalk(StorableConstructorFlag _) : base(_) { }
[13583]42    private AdaptiveWalk(AdaptiveWalk original, Cloner cloner) : base(original, cloner) { }
43    public AdaptiveWalk()
44      : base(new BestSelector()) {
45      SelectorParameter.Value.NumberOfSelectedSubScopesParameter.Hidden = true;
46      Parameters.Add(new FixedValueParameter<IntValue>("SampleSize", "Number of sampled moves from which the adaptive walk chooses the best.", new IntValue(10)));
47      var trailAnalyzer = AnalyzerParameter.Value.Operators.OfType<QualityTrailMultiAnalyzer>().Single();
48      var upDown = trailAnalyzer.Operators.OfType<UpDownWalkAnalyzer>().Single();
49      trailAnalyzer.Operators.SetItemCheckedState(upDown, false);
50    }
51
52    public override IDeepCloneable Clone(Cloner cloner) {
53      return new AdaptiveWalk(this, cloner);
54    }
55  }
56}
Note: See TracBrowser for help on using the repository browser.