Changeset 13435 for branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Manipulators/DirectScheduleManipulator.cs
- Timestamp:
- 12/04/15 10:35:04 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Manipulators/DirectScheduleManipulator.cs
r12012 r13435 35 35 public DirectScheduleManipulator() 36 36 : base() { 37 Schedule EncodingParameter.ActualName = "Schedule";37 ScheduleParameter.ActualName = "Schedule"; 38 38 } 39 39 … … 41 41 42 42 public override IOperation InstrumentedApply() { 43 var schedule = Schedule EncodingParameter.ActualValue as Schedule;43 var schedule = ScheduleParameter.ActualValue as Schedule; 44 44 if (schedule == null) throw new InvalidOperationException("ScheduleEncoding was not found or is not of type Schedule."); 45 45 Manipulate(RandomParameter.ActualValue, schedule);
Note: See TracChangeset
for help on using the changeset viewer.