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