Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/16 13:03:42 (8 years ago)
Author:
gkronber
Message:

#1966: added abstract problem and move evaluator classes and implemented 2d bin packing problem based on integer vector encoding

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/PackingSolutionDecoder.cs

    r14048 r14151  
    2727using HeuristicLab.Parameters;
    2828using HeuristicLab.Data;
    29 using HeuristicLab.Encodings.PackingEncoding;
    3029
    3130namespace HeuristicLab.Problems.BinPacking {
     
    5049      get { return (ILookupParameter<IItem>)Parameters["EncodedSolution"]; }
    5150    }
    52     public ILookupParameter<PackingPlan<D,B,I>> PackingPlanParameter {
     51    public ILookupParameter<PackingPlan<D, B, I>> PackingPlanParameter {
    5352      get { return (ILookupParameter<PackingPlan<D, B, I>>)Parameters["PackingPlan"]; }
    5453    }
     
    5857
    5958
    60     public PackingSolutionDecoder() : base() {
     59    public PackingSolutionDecoder()
     60      : base() {
    6161      Parameters.Add(new LookupParameter<IItem>("EncodedSolution", "The new bin-packing solution represented as encoding."));
    6262      Parameters.Add(new LookupParameter<PackingPlan<D, B, I>>("PackingPlan", "The decoded bin-packing solution represented as generalized packing plan."));
     
    6969    [StorableConstructor]
    7070    protected PackingSolutionDecoder(bool deserializing) : base(deserializing) { }
    71     protected PackingSolutionDecoder(PackingSolutionDecoder<D,B,I> original, Cloner cloner)
     71    protected PackingSolutionDecoder(PackingSolutionDecoder<D, B, I> original, Cloner cloner)
    7272      : base(original, cloner) {
    7373    }
Note: See TracChangeset for help on using the changeset viewer.