Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/17/10 05:24:03 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • corrected several bugs in order to get SGA working
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Evolutionary/3.3/ChildrenCreator.cs

    r2794 r2818  
    6868      for (int i = 0; i < children; i++) {
    6969        IScope child = new Scope(i.ToString());
    70         for (int j = 0; j < parents; j++) {
     70        for (int j = 0; j < parentsPerChild; j++) {
    7171          IScope parent = CurrentScope.SubScopes[0];
    7272          CurrentScope.SubScopes.RemoveAt(0);
Note: See TracChangeset for help on using the changeset viewer.