- Timestamp:
- 03/15/10 23:49:54 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.BinaryVectors/3.3/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.BinaryVectors/3.3/Interfaces/IBinaryVectorCreator.cs
r3042 r3048 29 29 /// </summary> 30 30 public interface IBinaryVectorCreator : IBinaryVectorOperator, ISolutionCreator { 31 IValueLookupParameter<Int Data> LengthParameter { get; }32 ILookupParameter<BoolArray Data> BinaryVectorParameter { get; }31 IValueLookupParameter<IntValue> LengthParameter { get; } 32 ILookupParameter<BoolArray> BinaryVectorParameter { get; } 33 33 } 34 34 } -
trunk/sources/HeuristicLab.Encodings.BinaryVectors/3.3/Interfaces/IBinaryVectorCrossover.cs
r3040 r3048 29 29 /// </summary> 30 30 public interface IBinaryVectorCrossover : IBinaryVectorOperator, ICrossover { 31 ILookupParameter<ItemArray<BoolArray Data>> ParentsParameter { get; }32 ILookupParameter<BoolArray Data> ChildParameter { get; }31 ILookupParameter<ItemArray<BoolArray>> ParentsParameter { get; } 32 ILookupParameter<BoolArray> ChildParameter { get; } 33 33 } 34 34 } -
trunk/sources/HeuristicLab.Encodings.BinaryVectors/3.3/Interfaces/IBinaryVectorManipulator.cs
r3042 r3048 29 29 /// </summary> 30 30 public interface IBinaryVectorManipulator : IBinaryVectorOperator, IManipulator { 31 ILookupParameter<BoolArray Data> BinaryVectorParameter { get; }31 ILookupParameter<BoolArray> BinaryVectorParameter { get; } 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.