Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/02/12 00:01:51 (12 years ago)
Author:
jkarder
Message:

#1331: improved support of the parallel engine

Location:
trunk/sources/HeuristicLab.Algorithms.ScatterSearch/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearch.cs

    r8348 r8380  
    212212
    213213      uniformSubScopesProcessor.Operator = solutionImprover;
     214      uniformSubScopesProcessor.ParallelParameter.Value = new BoolValue(true);
    214215      uniformSubScopesProcessor.Successor = variableCreator;
    215216
  • trunk/sources/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearchMainLoop.cs

    r8319 r8380  
    281281      uniformSubScopesProcessor1.DepthParameter.Value = new IntValue(1);
    282282      uniformSubScopesProcessor1.Operator = executePathRelinkingBranch;
     283      uniformSubScopesProcessor1.ParallelParameter.Value = new BoolValue(true);
    283284      uniformSubScopesProcessor1.Successor = solutionPoolUpdateMethod;
    284285
     
    309310      uniformSubScopesProcessor2.DepthParameter.Value = new IntValue(2);
    310311      uniformSubScopesProcessor2.Operator = solutionImprover1;
     312      uniformSubScopesProcessor2.ParallelParameter.Value = new BoolValue(true);
    311313      uniformSubScopesProcessor2.Successor = subScopesProcessor4;
    312314
     
    351353      uniformSubScopesProcessor3.DepthParameter.Value = new IntValue(1);
    352354      uniformSubScopesProcessor3.Operator = solutionImprover2;
     355      uniformSubScopesProcessor3.ParallelParameter.Value = new BoolValue(true);
    353356      uniformSubScopesProcessor3.Successor = dataReducer2;
    354357
Note: See TracChangeset for help on using the changeset viewer.