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.IntegerVectorEncoding/3.3/Crossovers/DiscreteCrossover.cs

    r3376 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    25 using HeuristicLab.Common;
    2623using HeuristicLab.Core;
    27 using HeuristicLab.Data;
    2824using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2925
     
    4743    /// <returns>The newly created integer vector, resulting from the crossover operation.</returns>
    4844    public static IntegerVector Apply(IRandom random, IntegerVector parent1, IntegerVector parent2) {
    49       if(parent1.Length != parent2.Length)
     45      if (parent1.Length != parent2.Length)
    5046        throw new ArgumentException("DiscreteCrossover: The parents are of different length.");
    5147
Note: See TracChangeset for help on using the changeset viewer.