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/MPISolutionsCreator.cs

    r7544 r7566  
    2929using System.Collections.Generic;
    3030using MPI;
     31using System;
    3132
    3233namespace HeuristicLab.Operators.MPISupport {
     
    103104          if (creator != null) {
    104105            IAtomicOperation op = ExecutionContext.CreateOperation(creator, scopes[i]);
    105             MPIHelper.Execute(op, CancellationToken);
     106            MPIHelper.Execute(op);
    106107          }
    107108
    108109          if (evaluator != null) {
    109110            IAtomicOperation op = ExecutionContext.CreateOperation(evaluator, scopes[i]);
    110             MPIHelper.Execute(op, CancellationToken);
     111            MPIHelper.Execute(op);
    111112          }
    112113
Note: See TracChangeset for help on using the changeset viewer.