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/AverageCrossover.cs

    r3376 r4068  
    2121
    2222using System;
    23 using HeuristicLab.Common;
    2423using HeuristicLab.Core;
    25 using HeuristicLab.Data;
    2624using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2725
     
    5856          result[i] = avg / (double)parentsCount;
    5957        }
    60       } catch (IndexOutOfRangeException) {
     58      }
     59      catch (IndexOutOfRangeException) {
    6160        throw new ArgumentException("AverageCrossover: The parents' vectors are of different length.", "parents");
    6261      }
Note: See TracChangeset for help on using the changeset viewer.