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.RealVectorEncoding/3.3/Crossovers/RandomConvexCrossover.cs

    r3376 r4068  
    2121
    2222using System;
    23 using HeuristicLab.Common;
    2423using HeuristicLab.Core;
    25 using HeuristicLab.Data;
    2624using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2725
     
    4745      if (parent1.Length != parent2.Length)
    4846        throw new ArgumentException("ERROR in RandomConvexCrossover: the two parents are not of the same length");
    49      
     47
    5048      int length = parent1.Length;
    5149      double[] result = new double[length];
Note: See TracChangeset for help on using the changeset viewer.