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/UniformCrossover.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;
    2824using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using HeuristicLab.Data;
    30 using HeuristicLab.Parameters;
    3125
    3226namespace HeuristicLab.Encodings.BinaryVectorEncoding {
     
    3933  [Item("UniformCrossover", "Uniform crossover for binary vectors. It is implemented as described in Eiben, A.E. and Smith, J.E. 2003. Introduction to Evolutionary Computation. Natural Computing Series, Springer-Verlag Berlin Heidelberg.")]
    4034  [StorableClass]
    41   public class UniformCrossover: BinaryVectorCrossover {
     35  public class UniformCrossover : BinaryVectorCrossover {
    4236    /// <summary>
    4337    /// Performs a uniform crossover between two binary vectors.
     
    6054          result[i] = parent2[i];
    6155      }
    62      
     56
    6357      return new BinaryVector(result);
    6458    }
Note: See TracChangeset for help on using the changeset viewer.