Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/18 14:19:06 (6 years ago)
Author:
rhanghof
Message:

#2817:

  • Fixed a bug at creating the extreme points with the point projection based method.
File:
1 edited

Legend:

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

    r15731 r15838  
    4242
    4343    public bool IsBetterThan(Solution other, IEvaluator evaluator, bool problemMaximization = true) {
    44       var evaluatedThis = evaluator.Evaluate1(this);
     44      var evaluatedThis = evaluator.EvaluateBinPacking(this);
    4545
    4646      if (double.IsInfinity(evaluatedThis.Item2) || double.IsNaN(evaluatedThis.Item2)) {
     
    5252      }
    5353
    54       var evaluatedOther = evaluator.Evaluate1(other);
     54      var evaluatedOther = evaluator.EvaluateBinPacking(other);
    5555      if (evaluatedThis.Item1 < evaluatedOther.Item1) {
    5656        return true;
Note: See TracChangeset for help on using the changeset viewer.