Changeset 14128 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces
- Timestamp:
- 07/20/16 14:02:36 (8 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingMove.cs
r14046 r14128 23 23 24 24 namespace HeuristicLab.Problems.BinPacking { 25 public interface IPackingMove : IItem {26 IPackingSolutionEncodingGetSolutionAfterMove();25 public interface IPackingMove<out T> : IItem { 26 T GetSolutionAfterMove(); 27 27 } 28 28 } -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionCreator.cs
r14046 r14128 24 24 25 25 namespace HeuristicLab.Problems.BinPacking { 26 public interface IPackingSolutionCreator : ISolutionCreator {26 public interface IPackingSolutionCreator : ISolutionCreator { 27 27 ILookupParameter<IItem> EncodedSolutionParameter { get; } 28 28 } -
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 } -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionManipulator.cs
r14046 r14128 24 24 25 25 namespace HeuristicLab.Problems.BinPacking { 26 public interface IPackingSolutionManipulator : IManipulator, IPackingOperator { 27 ILookupParameter<IPackingSolutionEncoding> EncodedSolutionParameter { get; } 26 public interface IPackingSolutionManipulator<T> : IManipulator, IPackingOperator 27 where T : class, IItem { 28 ILookupParameter<T> EncodedSolutionParameter { get; } 28 29 } 29 30 }
Note: See TracChangeset
for help on using the changeset viewer.