Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.Knapsack/3.3/Evaluators/KnapsackEvaluator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.Knapsack/3.3/Evaluators/KnapsackEvaluator.cs
r4722 r5177 129 129 } 130 130 131 public sealed override IOperation Apply( ) {131 public sealed override IOperation Apply(IExecutionContext context) { 132 132 BinaryVector v = BinaryVectorParameter.ActualValue; 133 133 … … 143 143 AppliedPenaltyParameter.ActualValue = evaluation.AppliedPenalty; 144 144 145 return base.Apply( );145 return base.Apply(context); 146 146 } 147 147 }
Note: See TracChangeset
for help on using the changeset viewer.