- 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/3D/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.BinPacking3D { 27 [StorableType("df195f8b-c7c1-4167-bff1-362e30f3c4dd")] 26 28 public interface IDecoder<in T> : IItem { 27 29 Solution Decode(T encodedSolution, PackingShape binShape, IList<PackingItem> items, bool useStackingConstraints); -
trunk/HeuristicLab.Problems.BinPacking/3.3/3D/Interfaces/IEvaluator.cs
r15583 r16565 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.BinPacking3D { 26 [StorableType("9bc2a33b-46b1-457c-a96b-afb15d5cc01f")] 25 27 public interface IEvaluator : IItem { 26 28 double Evaluate(Solution solution); -
trunk/HeuristicLab.Problems.BinPacking/3.3/3D/Interfaces/IOperator.cs
r15583 r16565 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.BinPacking3D { 27 [StorableType("d442d459-ad09-46df-8b3e-6164db9fb0e2")] 26 28 public interface IOperator<TSol> : IItem { 27 29 ILookupParameter<ReadOnlyItemList<PackingItem>> ItemsParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.