Exemplo n.º 1
0
 public void AddRange(Solution solution)
 {
     base.AddRange(solution);
     UsedStockArea += solution.UsedStockArea;
     PlacedArea    += solution.PlacedArea;
 }
Exemplo n.º 2
0
 public static int CompareByWasteAscending(Solution w1, Solution w2)
 {
     return((int)(w1.Waste - w2.Waste));
 }