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.ExternalEvaluation/3.4/Interfaces/IExternalEvaluationProblem.cs

    r17226 r17320  
    2020#endregion
    2121
     22using System.Threading;
    2223using Google.ProtocolBuffers;
     24using HEAL.Attic;
    2325using HeuristicLab.Core;
    2426using HeuristicLab.Optimization;
    25 using HEAL.Attic;
    2627
    2728namespace HeuristicLab.Problems.ExternalEvaluation {
     
    3233    CheckedItemCollection<IEvaluationServiceClient> Clients { get; }
    3334
    34     QualityMessage Evaluate(SolutionMessage solutionMessage);
     35    QualityMessage Evaluate(SolutionMessage solutionMessage, CancellationToken cancellationToken);
    3536    ExtensionRegistry GetQualityMessageExtensions();
    3637  }
Note: See TracChangeset for help on using the changeset viewer.