Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/12 22:53:53 (12 years ago)
Author:
ascheibe
Message:

#1745 fixed typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/ParallelIslandGeneticAlgorithmMainLoop.cs

    r7392 r7394  
    158158      VariableCreator islandVariableCreator = new VariableCreator();
    159159      Placeholder islandAnalyzer1 = new Placeholder();
    160       LocalRandomGenerator localRandomGenerator = new LocalRandomGenerator();
     160      LocalRandomCreator localRandomCreator = new LocalRandomCreator();
    161161      Placeholder analyzer1 = new Placeholder();
    162162      ResultsCollector resultsCollector1 = new ResultsCollector();
     
    313313      uniformSubScopesProcessor0.Successor = analyzer1;
    314314      islandVariableCreator.Successor = islandAnalyzer1;
    315       islandAnalyzer1.Successor = localRandomGenerator;
    316       localRandomGenerator.Successor = null;
     315      islandAnalyzer1.Successor = localRandomCreator;
     316      localRandomCreator.Successor = null;
    317317      analyzer1.Successor = resultsCollector1;
    318318      resultsCollector1.Successor = uniformSubScopesProcessor1;
Note: See TracChangeset for help on using the changeset viewer.