- Timestamp:
- 06/18/09 17:43:23 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs
r2058 r2064 71 71 if (algorithm != null) { 72 72 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); 74 77 asyncResults.Add(asyncResult.WaitHandle, asyncResult); 75 78 lock (activeAlgorithms) {
Note: See TracChangeset
for help on using the changeset viewer.