- Timestamp:
- 05/10/11 17:25:35 (14 years ago)
- Location:
- branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Interfaces
- Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IJSSPCrossover.cs
r6121 r6177 8 8 9 9 namespace HeuristicLab.Problems.Scheduling.Interfaces { 10 interface IJSSPCrossover : ICrossover{11 ILookupParameter<ItemArray< JSSPEncoding>> ParentsParameter { get; }12 ILookupParameter< JSSPEncoding> ChildParameter { get; }10 public interface IJSSPCrossover : ICrossover{ 11 ILookupParameter<ItemArray<IJSSPEncoding>> ParentsParameter { get; } 12 ILookupParameter<IJSSPEncoding> ChildParameter { get; } 13 13 } 14 14 } -
branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IJSSPManipulator.cs
r6121 r6177 26 26 namespace HeuristicLab.Problems.Scheduling.Interfaces { 27 27 public interface IJSSPManipulator : IManipulator { 28 ILookupParameter< JSSPEncoding> SchedulingSolutionParameter { get; }28 ILookupParameter<IJSSPEncoding> SchedulingSolutionParameter { get; } 29 29 } 30 30 }
Note: See TracChangeset
for help on using the changeset viewer.