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/Crossovers/SinglePointCrossover.cs

    r3376 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Common;
    2723using HeuristicLab.Core;
     24using HeuristicLab.Data;
    2825using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using HeuristicLab.Data;
    30 using HeuristicLab.Parameters;
    3126
    3227namespace HeuristicLab.Encodings.BinaryVectorEncoding {
     
    3934  [Item("SinglePointCrossover", "Single point crossover for binary vectors. It is implemented based on the NPointCrossover.")]
    4035  [StorableClass]
    41   public class SinglePointCrossover: BinaryVectorCrossover {
     36  public class SinglePointCrossover : BinaryVectorCrossover {
    4237    /// <summary>
    4338    /// Performs a single point crossover at a randomly chosen position of two
Note: See TracChangeset for help on using the changeset viewer.