- Timestamp:
- 03/15/10 23:49:54 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.IntVector/3.3/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.IntVector/3.3/Interfaces/IIntVectorCreator.cs
r3032 r3048 29 29 /// </summary> 30 30 public interface IIntVectorCreator : IIntVectorOperator, ISolutionCreator { 31 IValueLookupParameter<Int Data> LengthParameter { get; }32 IValueLookupParameter<Int Data> MinimumParameter { get; }33 IValueLookupParameter<Int Data> MaximumParameter { get; }34 ILookupParameter<IntArray Data> IntVectorParameter { get; }31 IValueLookupParameter<IntValue> LengthParameter { get; } 32 IValueLookupParameter<IntValue> MinimumParameter { get; } 33 IValueLookupParameter<IntValue> MaximumParameter { get; } 34 ILookupParameter<IntArray> IntVectorParameter { get; } 35 35 } 36 36 } -
trunk/sources/HeuristicLab.Encodings.IntVector/3.3/Interfaces/IIntVectorCrossover.cs
r3032 r3048 29 29 /// </summary> 30 30 public interface IIntVectorCrossover : IIntVectorOperator, ICrossover { 31 ILookupParameter<ItemArray<IntArray Data>> ParentsParameter { get; }32 ILookupParameter<IntArray Data> ChildParameter { get; }31 ILookupParameter<ItemArray<IntArray>> ParentsParameter { get; } 32 ILookupParameter<IntArray> ChildParameter { get; } 33 33 } 34 34 } -
trunk/sources/HeuristicLab.Encodings.IntVector/3.3/Interfaces/IIntVectorManipulator.cs
r3032 r3048 29 29 /// </summary> 30 30 public interface IIntVectorManipulator : IIntVectorOperator, IManipulator { 31 ILookupParameter<IntArray Data> IntVectorParameter { get; }31 ILookupParameter<IntArray> IntVectorParameter { get; } 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.