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/LawnMower/Problem.cs

    r17270 r17320  
    2222using System;
    2323using System.Linq;
     24using System.Threading;
    2425using HEAL.Attic;
    2526using HeuristicLab.Common;
     
    9293    }
    9394
    94     public override double Evaluate(ISymbolicExpressionTree tree, IRandom random) {
     95    public override double Evaluate(ISymbolicExpressionTree tree, IRandom random, CancellationToken cancellationToken) {
    9596      var length = LawnLengthParameter.Value.Value;
    9697      var width = LawnWidthParameter.Value.Value;
Note: See TracChangeset for help on using the changeset viewer.