- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Problems.BinPacking
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Problems.BinPacking (added) merged: 16452-16454,16462,16476,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces/IDecoder.cs
r15583 r16565 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Core; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.BinPacking2D { 27 [StorableType("bd8c18da-9f11-47b7-b654-6c63309f2864")] 26 28 public interface IDecoder<in T> : IItem { 27 29 Solution Decode(T encodedSolution, PackingShape binShape, IList<PackingItem> items); -
trunk/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces/IEvaluator.cs
r15583 r16565 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.BinPacking2D { 26 [StorableType("2b07154a-0861-426e-9a89-88269fec4865")] 25 27 public interface IEvaluator : IItem { 26 28 double Evaluate(Solution solution); -
trunk/HeuristicLab.Problems.BinPacking/3.3/2D/Interfaces/IOperator.cs
r15583 r16565 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.BinPacking2D { 26 [StorableType("347e0b15-f3ae-42a1-be51-0dae36e95d4c")] 25 27 public interface IOperator<TSol> : IItem { 26 28 ILookupParameter<ReadOnlyItemList<PackingItem>> ItemsParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.