Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/20/16 14:02:36 (8 years ago)
Author:
gkronber
Message:

#1966: refactoring of bin packing implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingSequence/IPackingSequenceCreator.cs

    r14064 r14128  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Data;
     25using HeuristicLab.Encodings.PermutationEncoding;
    2526using HeuristicLab.Optimization;
    2627using HeuristicLab.Problems.BinPacking;
     
    2829namespace HeuristicLab.Encodings.PackingEncoding.PackingSequence {
    2930  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; }
    3333  }
    3434}
Note: See TracChangeset for help on using the changeset viewer.