- Timestamp:
- 04/24/10 15:22:22 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCreator.cs ¶
r3376 r3520 35 35 [StorableClass] 36 36 public abstract class IntegerVectorCreator : SingleSuccessorOperator, IIntegerVectorCreator, IStochasticOperator { 37 public override bool CanChangeName { 38 get { return false; } 39 } 37 40 public ILookupParameter<IRandom> RandomParameter { 38 41 get { return (LookupParameter<IRandom>)Parameters["Random"]; } -
TabularUnified trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCrossover.cs ¶
r3376 r3520 35 35 [StorableClass] 36 36 public abstract class IntegerVectorCrossover : SingleSuccessorOperator, IIntegerVectorCrossover, IStochasticOperator { 37 public override bool CanChangeName { 38 get { return false; } 39 } 37 40 public ILookupParameter<IRandom> RandomParameter { 38 41 get { return (LookupParameter<IRandom>)Parameters["Random"]; } -
TabularUnified trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorManipulator.cs ¶
r3376 r3520 35 35 [StorableClass] 36 36 public abstract class IntegerVectorManipulator : SingleSuccessorOperator, IIntegerVectorManipulator, IStochasticOperator { 37 public override bool CanChangeName { 38 get { return false; } 39 } 37 40 public ILookupParameter<IRandom> RandomParameter { 38 41 get { return (LookupParameter<IRandom>)Parameters["Random"]; }
Note: See TracChangeset
for help on using the changeset viewer.