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.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs

    r3816 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    2423using System.Linq;
     24using HeuristicLab.Analysis;
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
     
    3333using HeuristicLab.PluginInfrastructure;
    3434using HeuristicLab.Random;
    35 using HeuristicLab.Selection;
    36 using HeuristicLab.Analysis;
    3735
    3836namespace HeuristicLab.Algorithms.GeneticAlgorithm {
     
    217215      Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze the islands.", new MultiAnalyzer()));
    218216      Parameters.Add(new ValueParameter<MultiAnalyzer>("IslandAnalyzer", "The operator used to analyze each island.", new MultiAnalyzer()));
    219      
     217
    220218      RandomCreator randomCreator = new RandomCreator();
    221219      SubScopesCreator populationCreator = new SubScopesCreator();
Note: See TracChangeset for help on using the changeset viewer.