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.Problems.TravelingSalesman/3.3/Analyzers/BestTSPSolutionAnalyzer.cs

    r3787 r4068  
    2121
    2222using System.Linq;
    23 using HeuristicLab.Common;
    2423using HeuristicLab.Core;
    2524using HeuristicLab.Data;
     
    8685        i = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
    8786      else i = qualities.Select((x, index) => new { index, x.Value }).OrderByDescending(x => x.Value).First().index;
    88      
     87
    8988      if (bestKnownQuality == null ||
    9089          max && qualities[i].Value > bestKnownQuality.Value ||
Note: See TracChangeset for help on using the changeset viewer.