Changeset 14128 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingSequence/IPackingSequenceCreator.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/Encodings/PackingSequence/IPackingSequenceCreator.cs
r14064 r14128 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Data; 25 using HeuristicLab.Encodings.PermutationEncoding; 25 26 using HeuristicLab.Optimization; 26 27 using HeuristicLab.Problems.BinPacking; … … 28 29 namespace HeuristicLab.Encodings.PackingEncoding.PackingSequence { 29 30 interface IPackingSequenceCreator : ISolutionCreator, IPackingSequenceOperator { 30 IValueLookupParameter<IntValue> PackingItemsParameter { get; } 31 ILookupParameter<PackingSequence> SolutionParameter { get; } 32 31 ILookupParameter<IntValue> NumberOfPackingItemsParameter { get; } 32 ILookupParameter<Permutation> SolutionParameter { get; } 33 33 } 34 34 }
Note: See TracChangeset
for help on using the changeset viewer.