Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/04/19 17:31:54 (5 years ago)
Author:
mkommend
Message:

#2521: Added cancellation token to evaluate function of problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Problem.cs

    r17270 r17320  
    2323using System.Diagnostics.Contracts;
    2424using System.Linq;
     25using System.Threading;
    2526using HEAL.Attic;
    2627using HeuristicLab.Common;
     
    134135
    135136
    136     public override double Evaluate(ISymbolicExpressionTree tree, IRandom random) {
     137    public override double Evaluate(ISymbolicExpressionTree tree, IRandom random, CancellationToken cancellationToken) {
    137138      var interpreter = new Interpreter(tree, World, MaxTimeSteps);
    138139      interpreter.Run();
Note: See TracChangeset for help on using the changeset viewer.