Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15200 for branches


Ignore:
Timestamp:
07/11/17 14:53:27 (7 years ago)
Author:
abeham
Message:

#2762: small changes to the results output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BinPackingExtension/HeuristicLab.Problems.BinPacking/3.3/Algorithms/3D/ExtremePointAlgorithm.cs

    r15183 r15200  
    117117      var binUtil = new BinUtilizationEvaluator();
    118118      var packRatio = new PackingRatioEvaluator();
    119       Results.Add(new Result("Best Solution BinCount", new IntValue(result.Item1.NrOfBins)));
    120       Results.Add(new Result("Best Solution Bin Utilization", new PercentValue(Math.Round(binUtil.Evaluate(result.Item1), 2))));
    121       Results.Add(new Result("Best Solution Packing Ratio", new PercentValue(Math.Round(packRatio.Evaluate(result.Item1), 2))));
     119      Results.Add(new Result("Best Solution Bin Count", new IntValue(result.Item1.NrOfBins)));
     120      Results.Add(new Result("Best Solution Bin Utilization", new PercentValue(Math.Round(binUtil.Evaluate(result.Item1), 3))));
    122121
    123122      if (result.Item3.HasValue && sorting.Length > 1)
Note: See TracChangeset for help on using the changeset viewer.