Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/09 17:43:23 (15 years ago)
Author:
gkronber
Message:

Fixed a few bugs in bridge from grid to hive. #642 (Hive backend for CEDMA)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs

    r2058 r2064  
    7171            if (algorithm != null) {
    7272              AtomicOperation op = new AtomicOperation(algorithm.Engine.OperatorGraph.InitialOperator, algorithm.Engine.GlobalScope);
    73               AsyncGridResult asyncResult = jobManager.BeginExecuteEngine(new ProcessingEngine(algorithm.Engine.GlobalScope, op));
     73              ProcessingEngine procEngine = new ProcessingEngine(algorithm.Engine.GlobalScope, op);
     74              procEngine.OperatorGraph.AddOperator(algorithm.Engine.OperatorGraph.InitialOperator);
     75              procEngine.OperatorGraph.InitialOperator = algorithm.Engine.OperatorGraph.InitialOperator;
     76              AsyncGridResult asyncResult = jobManager.BeginExecuteEngine(procEngine);
    7477              asyncResults.Add(asyncResult.WaitHandle, asyncResult);
    7578              lock (activeAlgorithms) {
Note: See TracChangeset for help on using the changeset viewer.