Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/12 16:11:36 (12 years ago)
Author:
svonolfe
Message:

Adapted MPI operators (#1542)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MPI/HeuristicLab.Operators.MPISupport/3.3/MPIHelper.cs

    r7544 r7566  
    2727    }
    2828
    29     public static void Execute(IAtomicOperation op, CancellationToken cancellationToken) {
     29    public static void Execute(IAtomicOperation op) {
    3030      IOperation next;
    3131      OperationCollection coll;
     
    3636
    3737      while (executionStack.Count > 0) {
    38         cancellationToken.ThrowIfCancellationRequested();
    39 
    4038        next = executionStack.Pop();
    4139        if (next is OperationCollection) {
     
    4644          operation = (IAtomicOperation)next;
    4745          try {
    48             next = operation.Operator.Execute((IExecutionContext)operation, cancellationToken);
     46            next = operation.Operator.Execute((IExecutionContext)operation, new CancellationToken());
    4947          }
    5048          catch (Exception ex) {
Note: See TracChangeset for help on using the changeset viewer.