Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/02/13 04:26:26 (11 years ago)
Author:
jhelm
Message:

#1966: Implemented additional Operator-Wrappers for PackingSequence and GroupingVector; Implemented additional problem-class for Rosenbauer-Problemstatement; Added marker-interfaces for decoder-types;

File:
1 edited

Legend:

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

    r9348 r9563  
    3030  public interface IPackingItem : IPackingShape {
    3131    void AddTargetBinMeasures(int[] targetBinMeasures);
     32    double Weight { get; set; }
     33    int Material { get; set; }
     34    /// <summary>
     35    /// Returns if the "other" item can be stacked on this item.
     36    /// </summary>
     37    /// <param name="other"></param>
     38    /// <returns></returns>
     39    bool SupportsStacking (IPackingItem other);
    3240  }
    3341}
Note: See TracChangeset for help on using the changeset viewer.