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/BlendAlphaBetaCrossoverTest.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 {
     
    10098        RealVector actual;
    10199        actual = target.Cross(random, parents);
    102       } catch (System.ArgumentException) {
     100      }
     101      catch (System.ArgumentException) {
    103102        exceptionFired = true;
    104103      }
     
    111110        RealVector actual;
    112111        actual = target.Cross(random, parents);
    113       } catch (System.ArgumentException) {
     112      }
     113      catch (System.ArgumentException) {
    114114        exceptionFired = true;
    115115      }
     
    146146      try {
    147147        actual = BlendAlphaBetaCrossover.Apply(random, parent1, parent2, alpha, beta);
    148       } catch (System.ArgumentException) {
     148      }
     149      catch (System.ArgumentException) {
    149150        exceptionFired = true;
    150151      }
     
    159160      try {
    160161        actual = BlendAlphaBetaCrossover.Apply(random, parent1, parent2, alpha, beta);
    161       } catch (System.ArgumentException) {
     162      }
     163      catch (System.ArgumentException) {
    162164        exceptionFired = true;
    163165      }
Note: See TracChangeset for help on using the changeset viewer.