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/Tests/SimulatedBinaryCrossoverTest.cs

    r3742 r4068  
    2020#endregion
    2121
     22using HeuristicLab.Core;
     23using HeuristicLab.Data;
    2224using HeuristicLab.Encodings.RealVectorEncoding;
    2325using Microsoft.VisualStudio.TestTools.UnitTesting;
    24 using HeuristicLab.Common;
    25 using HeuristicLab.Core;
    26 using HeuristicLab.Data;
    27 using HeuristicLab.Parameters;
    2826
    2927namespace HeuristicLab.Encodings.RealVectorEncoding_33.Tests {
     
    112110        RealVector actual;
    113111        actual = target.Cross(random, parents);
    114       } catch (System.ArgumentException) {
     112      }
     113      catch (System.ArgumentException) {
    115114        exceptionFired = true;
    116115      }
     
    145144      try {
    146145        actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
    147       } catch (System.ArgumentException) {
     146      }
     147      catch (System.ArgumentException) {
    148148        exceptionFired = true;
    149149      }
     
    153153      random.DoubleNumbers = new double[] { 0.3, 0.9, 0.7, 0.2, 0.8, 0.1, 0.2, 0.3, 0.4, 0.8, 0.7 };
    154154      contiguity = new DoubleValue(-0.3);  //  contiguity < 0
    155       parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1});
     155      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1 });
    156156      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
    157157      exceptionFired = false;
Note: See TracChangeset for help on using the changeset viewer.