- Timestamp:
- 03/16/10 10:35:28 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Interfaces
- Files:
-
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Interfaces/IIntegerVectorCreator.cs
r3054 r3059 28 28 /// An interface which represents an operator for creating vectors of int-valued data. 29 29 /// </summary> 30 public interface IInt VectorCreator : IIntVectorOperator, ISolutionCreator {30 public interface IIntegerVectorCreator : IIntegerVectorOperator, ISolutionCreator { 31 31 IValueLookupParameter<IntValue> LengthParameter { get; } 32 32 IValueLookupParameter<IntValue> MinimumParameter { get; } 33 33 IValueLookupParameter<IntValue> MaximumParameter { get; } 34 ILookupParameter<Int Array> IntVectorParameter { get; }34 ILookupParameter<IntegerVector> IntegerVectorParameter { get; } 35 35 } 36 36 } -
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Interfaces/IIntegerVectorCrossover.cs
r3054 r3059 28 28 /// An interface which represents an operator for crossing vectors of int-valued data. 29 29 /// </summary> 30 public interface IInt VectorCrossover : IIntVectorOperator, ICrossover {31 ILookupParameter<ItemArray<Int Array>> ParentsParameter { get; }32 ILookupParameter<Int Array> ChildParameter { get; }30 public interface IIntegerVectorCrossover : IIntegerVectorOperator, ICrossover { 31 ILookupParameter<ItemArray<IntegerVector>> ParentsParameter { get; } 32 ILookupParameter<IntegerVector> ChildParameter { get; } 33 33 } 34 34 } -
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Interfaces/IIntegerVectorManipulator.cs
r3054 r3059 28 28 /// An interface which represents an operator for manipulating vectors of int-valued data. 29 29 /// </summary> 30 public interface IInt VectorManipulator : IIntVectorOperator, IManipulator {31 ILookupParameter<Int Array> IntVectorParameter { get; }30 public interface IIntegerVectorManipulator : IIntegerVectorOperator, IManipulator { 31 ILookupParameter<IntegerVector> IntegerVectorParameter { get; } 32 32 } 33 33 } -
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Interfaces/IIntegerVectorOperator.cs
r3054 r3059 26 26 /// An interface which represents an operator dealing with vectors of int-valued data. 27 27 /// </summary> 28 public interface IInt VectorOperator : IOperator { }28 public interface IIntegerVectorOperator : IOperator { } 29 29 }
Note: See TracChangeset
for help on using the changeset viewer.