Free cookie consent management tool by TermsFeed Policy Generator

source: branches/LearningClassifierSystems/HeuristicLab.Encodings.VariableVector/3.3/VariableVectorManipulator.cs @ 9475

Last change on this file since 9475 was 9475, checked in by sforsten, 11 years ago

#1980: several small bug fixes

File size: 3.1 KB
RevLine 
[9204]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Operators;
25using HeuristicLab.Optimization;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Encodings.VariableVector {
30  [Item("VariableVectorManipulator", "Description missing")]
31  [StorableClass]
32  public abstract class VariableVectorManipulator : SingleSuccessorOperator, IVariableVectorManipulator, IStochasticOperator {
33
34    #region parameters
35    public ILookupParameter<IRandom> RandomParameter {
36      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
37    }
38    public ILookupParameter<VariableVector> ChildParameter {
39      get { return (ILookupParameter<VariableVector>)Parameters["Child"]; }
40    }
41    public ILookupParameter<VariableVectorInput> FetchedInputParameter {
42      get { return (ILookupParameter<VariableVectorInput>)Parameters["Input"]; }
43    }
[9475]44    public IValueLookupParameter<IVariableVectorClassificationProblemData> ProblemDataParameter {
45      get { return (IValueLookupParameter<IVariableVectorClassificationProblemData>)Parameters["ProblemData"]; }
46    }
[9204]47    #endregion
48
49    [StorableConstructor]
50    protected VariableVectorManipulator(bool deserializing) : base(deserializing) { }
51    protected VariableVectorManipulator(VariableVectorManipulator original, Cloner cloner)
52      : base(original, cloner) {
53    }
54    public VariableVectorManipulator()
55      : base() {
56      Parameters.Add(new LookupParameter<IRandom>("Random"));
57      Parameters.Add(new LookupParameter<VariableVector>("Child"));
58      Parameters.Add(new LookupParameter<VariableVectorInput>("Input"));
[9475]59      Parameters.Add(new ValueLookupParameter<IVariableVectorClassificationProblemData>("ProblemData", ""));
[9204]60    }
61
62    public sealed override IOperation Apply() {
[9475]63      ChildParameter.ActualValue = Manipulate(RandomParameter.ActualValue, FetchedInputParameter.ActualValue, ChildParameter.ActualValue, ProblemDataParameter.ActualValue.SpreadPercentageParameter.Value.Value);
[9204]64      return base.Apply();
65    }
66
[9475]67    protected abstract VariableVector Manipulate(IRandom random, VariableVectorInput input, VariableVector child, double spreadPercentage);
[9204]68  }
69}
Note: See TracBrowser for help on using the repository browser.