Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Selection/3.3/OffspringSelector.cs

    r3854 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    2523using HeuristicLab.Core;
    2624using HeuristicLab.Data;
     
    107105        OffspringPopulationWinnersParameter.ActualValue = successfulOffspring;
    108106      } else successfulOffspring = OffspringPopulationWinnersParameter.ActualValue;
    109      
     107
    110108      int worseOffspringNeeded = (int)((1 - successRatio) * populationSize) - (population.Count - successfulOffspring.Value);
    111109      int successfulOffspringAdded = 0;
     
    150148        scope.SubScopes.Remove(parents);
    151149        scope.SubScopes.Remove(offspring);
    152         while(parents.SubScopes.Count > 0)
     150        while (parents.SubScopes.Count > 0)
    153151          scope.SubScopes.Add(parents.SubScopes[0]);
    154152
Note: See TracChangeset for help on using the changeset viewer.