Changeset 8644 for branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding/3.3/Operators/Crossovers/IntValue/NormalIntValueCrossover.cs
- Timestamp:
- 09/13/12 14:06:56 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding/3.3/Operators/Crossovers/IntValue/NormalIntValueCrossover.cs
r8590 r8644 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Data; 26 using HeuristicLab.Operators;27 using HeuristicLab.Optimization;28 using HeuristicLab.Parameters;29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 27 using HeuristicLab.Random; … … 36 33 [Item("NormalIntValueCrossover", "An operator which crosses two integer values. TODO")] 37 34 [StorableClass] 38 public class NormalIntValueCrossover : SingleSuccessorOperator, IIntValueCrossover, IStochasticOperator { 39 public ILookupParameter<IRandom> RandomParameter { 40 get { return (LookupParameter<IRandom>)Parameters["Random"]; } 41 } 42 35 public class NormalIntValueCrossover : Item, IIntValueCrossover { 43 36 #region Constructors and Cloning 44 37 public NormalIntValueCrossover() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.