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)

Location:
trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3
Files:
5 edited

Legend:

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

    r4052 r4068  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using System.Linq;
    25 using System.Text;
     24using HeuristicLab.Core;
     25using HeuristicLab.Data;
     26using HeuristicLab.Optimization;
     27using HeuristicLab.Parameters;
    2628using HeuristicLab.Selection;
    27 using HeuristicLab.Optimization;
    28 using HeuristicLab.Data;
    29 using HeuristicLab.Core;
    30 using HeuristicLab.Parameters;
    31 using HeuristicLab.Collections;
    3229
    3330namespace HeuristicLab.Algorithms.NSGA2 {
  • trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/DefaultCrossover.cs

    r4045 r4068  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     22using HeuristicLab.Core;
    2623using HeuristicLab.Operators;
    27 using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2924using HeuristicLab.Optimization;
    3025using HeuristicLab.Parameters;
     26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3127
    3228namespace HeuristicLab.Algorithms.NSGA2 {
  • trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs

    r4067 r4068  
    2222using System;
    2323using System.Linq;
     24using HeuristicLab.Analysis;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
    2627using HeuristicLab.Data;
    2728using HeuristicLab.Optimization;
     29using HeuristicLab.Optimization.Operators;
    2830using HeuristicLab.Parameters;
    2931using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    30 using HeuristicLab.Analysis;
     32using HeuristicLab.PluginInfrastructure;
    3133using HeuristicLab.Random;
    32 using HeuristicLab.Optimization.Operators;
    33 using HeuristicLab.PluginInfrastructure;
    34 using HeuristicLab.Selection;
    35 using HeuristicLab.Operators;
    3634
    3735namespace HeuristicLab.Algorithms.NSGA2 {
  • trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2MainLoop.cs

    r4045 r4068  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Data;
    2324using HeuristicLab.Operators;
     25using HeuristicLab.Optimization.Operators;
     26using HeuristicLab.Parameters;
    2427using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    25 using HeuristicLab.Parameters;
    26 using HeuristicLab.Data;
    27 using HeuristicLab.Optimization.Operators;
    2828using HeuristicLab.Selection;
    2929
  • trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/RankAndCrowdingSorter.cs

    r4045 r4068  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     22using HeuristicLab.Core;
     23using HeuristicLab.Data;
    2624using HeuristicLab.Operators;
    27 using HeuristicLab.Core;
     25using HeuristicLab.Parameters;
    2826using HeuristicLab.Selection;
    29 using HeuristicLab.Parameters;
    30 using HeuristicLab.Data;
    3127
    3228namespace HeuristicLab.Algorithms.NSGA2 {
Note: See TracChangeset for help on using the changeset viewer.