Changeset 5177 for branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/WeightedParentsQualityComparator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/WeightedParentsQualityComparator.cs
r4722 r5177 66 66 } 67 67 68 public override IOperation Apply( ) {68 public override IOperation Apply(IExecutionContext context) { 69 69 ItemArray<DoubleValue> rightQualities = RightSideParameter.ActualValue; 70 70 if (rightQualities.Length < 1) throw new InvalidOperationException(Name + ": No subscopes found."); … … 122 122 } 123 123 124 return base.Apply( );124 return base.Apply(context); 125 125 } 126 126 }
Note: See TracChangeset
for help on using the changeset viewer.