Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Manipulators/FullTreeShaker.cs @ 12694

Last change on this file since 12694 was 12694, checked in by abeham, 9 years ago

#2208: merged trunk changes

File size: 2.5 KB
RevLine 
[645]1#region License Information
2/* HeuristicLab
[12694]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[645]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
[4722]22using HeuristicLab.Common;
[645]23using HeuristicLab.Core;
24using HeuristicLab.Data;
[3512]25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[5499]26using HeuristicLab.Parameters;
[645]27
[5499]28namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
[3512]29  [StorableClass]
30  [Item("FullTreeShaker", "Manipulates all nodes that have local parameters.")]
[4722]31  public sealed class FullTreeShaker : SymbolicExpressionTreeManipulator {
[5499]32    private const string ShakingFactorParameterName = "ShakingFactor";
33    #region parameter properties
[6439]34    public IValueParameter<DoubleValue> ShakingFactorParameter {
35      get { return (IValueParameter<DoubleValue>)Parameters[ShakingFactorParameterName]; }
[5499]36    }
37    #endregion
38    #region properties
[6439]39    public double ShakingFactor {
40      get { return ShakingFactorParameter.Value.Value; }
41      set { ShakingFactorParameter.Value.Value = value; }
[5499]42    }
43    #endregion
[4722]44    [StorableConstructor]
45    private FullTreeShaker(bool deserializing) : base(deserializing) { }
46    private FullTreeShaker(FullTreeShaker original, Cloner cloner) : base(original, cloner) { }
[5499]47    public FullTreeShaker()
48      : base() {
[6439]49      Parameters.Add(new FixedValueParameter<DoubleValue>(ShakingFactorParameterName, "The shaking factor that should be used for the manipulation of constants (default=1.0).", new DoubleValue(1.0)));
[5499]50    }
[4722]51
52    public override IDeepCloneable Clone(Cloner cloner) {
53      return new FullTreeShaker(this, cloner);
[645]54    }
55
[5510]56    protected override void Manipulate(IRandom random, ISymbolicExpressionTree tree) {
[5499]57      tree.Root.ForEachNodePostfix(node => {
[3512]58        if (node.HasLocalParameters) {
[6439]59          node.ShakeLocalParameters(random, ShakingFactor);
[3512]60        }
[5499]61      });
[645]62    }
63  }
64}
Note: See TracBrowser for help on using the repository browser.