Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/15/17 12:30:13 (6 years ago)
Author:
rhanghof
Message:

#2817:
-Added unit tests
-Refactoring of bp 3D

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Evaluators/BinUtilizationEvaluator.cs

    r14167 r15473  
    2626using HeuristicLab.Common;
    2727
    28 namespace HeuristicLab.Problems.BinPacking3D {
     28namespace HeuristicLab.Problems.BinPacking3D.Evaluators {
    2929  // NOTE: same implementation as for 2d problem
    3030  [Item("Bin-Utilization Evaluator (3d)", "Calculates the overall utilization of bin space.")]
     
    4343
    4444    #region IEvaluator Members
     45
     46    /// <summary>
     47    /// Calculates the bin utilization in percent.
     48    /// </summary>
     49    /// <param name="solution"></param>
     50    /// <returns>Returns the calculated bin utilization of all bins in percent.</returns>
    4551    public double Evaluate(Solution solution) {
    4652      return CalculateBinUtilization(solution);
Note: See TracChangeset for help on using the changeset viewer.