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.TabuSearch/3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuListCreator.cs

    r3376 r4068  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using HeuristicLab.Common;
    2522using HeuristicLab.Core;
    2623using HeuristicLab.Operators;
    2724using HeuristicLab.Parameters;
    2825using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using HeuristicLab.Selection;
    3026
    3127namespace HeuristicLab.Algorithms.TabuSearch {
  • trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuNeighborhoodAnalyzer.cs

    r3809 r4068  
    2121
    2222using System.Linq;
     23using HeuristicLab.Core;
     24using HeuristicLab.Data;
    2325using HeuristicLab.Operators;
    2426using HeuristicLab.Optimization;
    2527using HeuristicLab.Parameters;
    26 using HeuristicLab.Data;
    27 using HeuristicLab.Core;
    2828
    2929namespace HeuristicLab.Algorithms.TabuSearch {
  • trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearch.cs

    r3816 r4068  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HeuristicLab.Analysis;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
    2728using HeuristicLab.Data;
    2829using HeuristicLab.Optimization;
    29 using HeuristicLab.Operators;
    3030using HeuristicLab.Optimization.Operators;
    3131using HeuristicLab.Parameters;
    3232using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    33 using HeuristicLab.PluginInfrastructure;
    3433using HeuristicLab.Random;
    35 using HeuristicLab.Analysis;
    3634
    3735namespace HeuristicLab.Algorithms.TabuSearch {
     
    155153      Parameters.Add(new ValueParameter<IntValue>("SampleSize", "The neighborhood size for stochastic sampling move generators", new IntValue(100)));
    156154      Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze the solution.", new MultiAnalyzer()));
    157      
     155
    158156      RandomCreator randomCreator = new RandomCreator();
    159157      SolutionsCreator solutionsCreator = new SolutionsCreator();
  • trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearchMainLoop.cs

    r3809 r4068  
    2121
    2222using HeuristicLab.Analysis;
    23 using HeuristicLab.Common;
    2423using HeuristicLab.Core;
    2524using HeuristicLab.Data;
     
    188187      tabuSelector.MoveQualityParameter.ActualName = MoveQualityParameter.Name;
    189188      tabuSelector.MoveTabuParameter.ActualName = MoveTabuParameter.Name;
    190      
     189
    191190      moveMakingProcessor.Name = "MoveMaking processor (UniformSubScopesProcessor)";
    192191
  • trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSelector.cs

    r3659 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using HeuristicLab.Common;
    2524using HeuristicLab.Core;
    2625using HeuristicLab.Data;
    27 using HeuristicLab.Operators;
    2826using HeuristicLab.Parameters;
    2927using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
Note: See TracChangeset for help on using the changeset viewer.