Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/26/10 03:51:30 (14 years ago)
Author:
swagner
Message:

Removed property ExecutionContext in Operator (#1333)

Location:
branches/ParallelEngine/HeuristicLab.Problems.ArtificialAnt/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Problems.ArtificialAnt/3.3/Analyzers/BestAntTrailAnalyzer.cs

    r4722 r5177  
    7575    }
    7676
    77     public override IOperation Apply() {
     77    public override IOperation Apply(IExecutionContext context) {
    7878      ItemArray<SymbolicExpressionTree> expressions = SymbolicExpressionTreeParameter.ActualValue;
    7979      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
     
    9595        results["Best Artificial Ant Solution"].Value = antTrail;
    9696      }
    97       return base.Apply();
     97      return base.Apply(context);
    9898    }
    9999  }
  • branches/ParallelEngine/HeuristicLab.Problems.ArtificialAnt/3.3/Evaluator.cs

    r4722 r5177  
    6060    }
    6161
    62     public sealed override IOperation Apply() {
     62    public sealed override IOperation Apply(IExecutionContext context) {
    6363      SymbolicExpressionTree expression = SymbolicExpressionTreeParameter.ActualValue;
    6464      BoolMatrix world = WorldParameter.ActualValue;
Note: See TracChangeset for help on using the changeset viewer.