Changeset 13469 for branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/Interfaces/IScheduleCreator.cs
- Timestamp:
- 12/15/15 15:16:24 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/Interfaces/IScheduleCreator.cs
r13437 r13469 25 25 26 26 namespace HeuristicLab.Encodings.ScheduleEncoding { 27 public interface IScheduleCreator : ISolutionCreator<ISchedule>, IScheduleOperator { 28 ILookupParameter<ISchedule> ScheduleParameter { get; } 27 public interface IScheduleCreator<TSchedule> : ISolutionCreator<TSchedule>, IScheduleOperator 28 where TSchedule : class,ISchedule { 29 ILookupParameter<TSchedule> ScheduleParameter { get; } 29 30 IValueLookupParameter<IntValue> JobsParameter { get; } 30 31 IValueLookupParameter<IntValue> ResourcesParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.