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/Evaluators/EvaluatorBase.cs

    r14052 r14128  
    7575    }
    7676
    77     protected abstract DoubleValue Evaluate();                                                                       
     77    protected abstract double Evaluate();                                                                       
    7878    public override IOperation Apply() {
    79       QualityParameter.ActualValue = Evaluate();
     79      QualityParameter.ActualValue = new DoubleValue(Evaluate());
    8080      return base.Apply();
    8181    }
Note: See TracChangeset for help on using the changeset viewer.