Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.ArtificialAnt/3.3/Analyzers/BestAntTrailAnalyzer.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.ArtificialAnt/3.3/Analyzers/BestAntTrailAnalyzer.cs
r4722 r5177 75 75 } 76 76 77 public override IOperation Apply( ) {77 public override IOperation Apply(IExecutionContext context) { 78 78 ItemArray<SymbolicExpressionTree> expressions = SymbolicExpressionTreeParameter.ActualValue; 79 79 ItemArray<DoubleValue> qualities = QualityParameter.ActualValue; … … 95 95 results["Best Artificial Ant Solution"].Value = antTrail; 96 96 } 97 return base.Apply( );97 return base.Apply(context); 98 98 } 99 99 }
Note: See TracChangeset
for help on using the changeset viewer.