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