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.Encodings.PermutationEncoding/3.3/Moves/ThreeOpt/StochasticSingleInsertionMoveGenerator.cs

    r4046 r4068  
    2121
    2222using System;
    23 using HeuristicLab.Common;
     23using System.Collections.Generic;
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Data;
     
    2727using HeuristicLab.Parameters;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using System.Collections.Generic;
    3029
    3130namespace HeuristicLab.Encodings.PermutationEncoding {
     
    5756      HashSet<int> usedIndices = new HashSet<int>();
    5857      while (count < sampleSize) {
    59        
     58
    6059        int index = random.Next(length);
    61        
     60
    6261        if (usedIndices.Count != length)
    6362          while (usedIndices.Contains(index))
Note: See TracChangeset for help on using the changeset viewer.