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

    r3742 r4068  
    2020#endregion
    2121
     22using HeuristicLab.Core;
     23using HeuristicLab.Data;
    2224using HeuristicLab.Encodings.BinaryVectorEncoding;
    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.BinaryVectorEncoding_33.Tests {
     
    112110        BinaryVector actual;
    113111        actual = target.Cross(random, parents);
    114       } catch (System.ArgumentException) {
     112      }
     113      catch (System.ArgumentException) {
    115114        exceptionFired = true;
    116115      }
     
    136135      actual = NPointCrossover.Apply(random, parent1, parent2, n);
    137136      Assert.IsTrue(Auxiliary.BinaryVectorIsEqualByPosition(actual, expected));
    138      
     137
    139138      // The following test is based on Eiben, A.E. and Smith, J.E. 2003. Introduction to Evolutionary Computation. Natural Computing Series, Springer-Verlag Berlin Heidelberg, p. 48
    140139      random.Reset();
     
    165164      try {
    166165        actual = NPointCrossover.Apply(random, parent1, parent2, n);
    167       } catch (System.ArgumentException) {
     166      }
     167      catch (System.ArgumentException) {
    168168        exceptionFired = true;
    169169      }
Note: See TracChangeset for help on using the changeset viewer.