Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.Knapsack/3.3/Analyzers/BestKnapsackSolutionAnalyzer.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/Analyzers/BestKnapsackSolutionAnalyzer.cs
r4722 r5177 90 90 } 91 91 92 public override IOperation Apply( ) {92 public override IOperation Apply(IExecutionContext context) { 93 93 ItemArray<BinaryVector> binaryVectors = BinaryVectorParameter.ActualValue; 94 94 ItemArray<DoubleValue> qualities = QualityParameter.ActualValue; … … 126 126 } 127 127 128 return base.Apply( );128 return base.Apply(context); 129 129 } 130 130 }
Note: See TracChangeset
for help on using the changeset viewer.