Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces/IDecoder.cs
r14162 r14929 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.BinPacking2D { 27 [StorableType("d0fb4b32-b19e-4abe-ad94-05c20c72b560")] 26 28 public interface IDecoder<in T> : IItem { 27 29 Solution Decode(T encodedSolution, PackingShape binShape, IList<PackingItem> items); -
branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces/IEvaluator.cs
r14162 r14929 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.BinPacking2D { 26 [StorableType("ae84f8c8-4b2a-4423-b491-18b3b8da0eec")] 25 27 public interface IEvaluator : IItem { 26 28 double Evaluate(Solution solution); -
branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces/IOperator.cs
r14162 r14929 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.BinPacking2D { 26 [StorableType("9b608e63-fff8-4d11-882c-665671a31a9b")] 25 27 public interface IOperator<TSol> : IItem { 26 28 ILookupParameter<ReadOnlyItemList<PackingItem>> ItemsParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.