Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Evaluators
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Evaluators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Evaluators/BinUtilizationEvaluator.cs
r14167 r14927 23 23 using System.Linq; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;25 using HeuristicLab.Persistence; 26 26 using HeuristicLab.Common; 27 27 28 28 namespace HeuristicLab.Problems.BinPacking2D { 29 29 [Item("Bin-Utilization Evaluator (2d)", "Calculates the overall utilization of bin space.")] 30 [Storable Class]30 [StorableType("b28355d7-d83b-495f-a7be-c8d8b23ccbe4")] 31 31 public class BinUtilizationEvaluator : Item, IEvaluator { 32 32 -
branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Evaluators/PackingRatioEvaluator.cs
r14167 r14927 23 23 using System.Linq; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;25 using HeuristicLab.Persistence; 26 26 using HeuristicLab.Common; 27 27 28 28 namespace HeuristicLab.Problems.BinPacking2D { 29 29 [Item("Packing-Ratio Evaluator (2d)", "Calculates the ratio between packed and unpacked space.")] 30 [Storable Class]30 [StorableType("ae4e66f5-caac-4cf1-8d12-37aebee62a6e")] 31 31 public class PackingRatioEvaluator : Item, IEvaluator { 32 32
Note: See TracChangeset
for help on using the changeset viewer.