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.SimulatedAnnealing/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.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;
     
    3333using HeuristicLab.PluginInfrastructure;
    3434using HeuristicLab.Random;
    35 using HeuristicLab.Analysis;
    3635
    3736namespace HeuristicLab.Algorithms.SimulatedAnnealing {
     
    155154      Parameters.Add(new ValueParameter<DoubleValue>("EndTemperature", "The final temperature which should be reached when iterations reaches maximum iterations.", new DoubleValue(1e-6)));
    156155      Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze each generation.", new MultiAnalyzer()));
    157      
     156
    158157      RandomCreator randomCreator = new RandomCreator();
    159158      SolutionsCreator solutionsCreator = new SolutionsCreator();
  • trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealingMainLoop.cs

    r3750 r4068  
    2020#endregion
    2121
    22 using HeuristicLab.Analysis;
    23 using HeuristicLab.Common;
    2422using HeuristicLab.Core;
    2523using HeuristicLab.Data;
     
    2826using HeuristicLab.Parameters;
    2927using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    30 using HeuristicLab.Selection;
    3128
    3229namespace HeuristicLab.Algorithms.SimulatedAnnealing {
     
    103100      Parameters.Add(new ValueLookupParameter<IntValue>("InnerIterations", "The amount of inner iterations (number of moves before temperature is adjusted again)."));
    104101      Parameters.Add(new ValueLookupParameter<IntValue>("MaximumIterations", "The maximum number of iterations which should be processed."));
    105      
     102
    106103      Parameters.Add(new ValueLookupParameter<IOperator>("MoveGenerator", "The operator that generates the moves."));
    107104      Parameters.Add(new ValueLookupParameter<IOperator>("MoveEvaluator", "The operator that evaluates a move."));
Note: See TracChangeset for help on using the changeset viewer.