Changeset 14128 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionCrossover.cs
- Timestamp:
- 07/20/16 14:02:36 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionCrossover.cs
r14046 r14128 25 25 26 26 namespace HeuristicLab.Problems.BinPacking { 27 public interface IPackingSolutionCrossover : ICrossover, IPackingOperator { 28 ILookupParameter<IPackingSolutionEncoding> ChildParameter { get; } 29 IScopeTreeLookupParameter<IPackingSolutionEncoding> ParentsParameter { get; } 27 public interface IPackingSolutionCrossover<T> : ICrossover, IPackingOperator 28 where T : class, IItem { 29 ILookupParameter<T> ChildParameter { get; } 30 IScopeTreeLookupParameter<T> ParentsParameter { get; } 30 31 } 31 32 }
Note: See TracChangeset
for help on using the changeset viewer.