- Timestamp:
- 07/20/16 14:02:36 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Analyzers/BestBinPackingSolutionAnalyzer.cs
r14050 r14128 93 93 } 94 94 string binUtilKey = "Overall Bin Utilization"; 95 DoubleValue binUtil = BinUtilizationEvaluator<D, B, I>.CalculateBinUtilization(bestSolution);95 var binUtil = new DoubleValue(BinUtilizationEvaluator<D, B, I>.CalculateBinUtilization(bestSolution)); 96 96 if (!results.ContainsKey(binUtilKey)) 97 97 results.Add(new Result(binUtilKey, binUtil));
Note: See TracChangeset
for help on using the changeset viewer.