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.BinaryVectorEncoding/3.3/Moves/OneBitflipMove/ExhaustiveOneBitflipMoveGenerator.cs

    r3376 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Common;
    2422using HeuristicLab.Core;
     23using HeuristicLab.Optimization;
    2524using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    26 using HeuristicLab.Optimization;
    2725
    2826namespace HeuristicLab.Encodings.BinaryVectorEncoding {
     
    3533      OneBitflipMove[] moves = new OneBitflipMove[totalMoves];
    3634      for (int i = 0; i < length; i++)
    37           moves[i] = new OneBitflipMove(i);
     35        moves[i] = new OneBitflipMove(i);
    3836
    3937      return moves;
Note: See TracChangeset for help on using the changeset viewer.