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.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();
Note: See TracChangeset for help on using the changeset viewer.