Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/13 12:54:32 (11 years ago)
Author:
abeham
Message:

#2088: Renamed namespaces (removed _33 and _34 postfixes)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.RealVectorEncoding-3.3/BlendAlphaBetaCrossoverTest.cs

    r9456 r9764  
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Data;
    24 using HeuristicLab.Encodings.RealVectorEncoding;
    2524using HeuristicLab.Tests;
    2625using Microsoft.VisualStudio.TestTools.UnitTesting;
    2726
    28 namespace HeuristicLab.Encodings.RealVectorEncoding_33.Tests {
     27namespace HeuristicLab.Encodings.RealVectorEncoding.Tests {
    2928
    3029
     
    9998        RealVector actual;
    10099        actual = target.Cross(random, parents);
    101       }
    102       catch (System.ArgumentException) {
     100      } catch (System.ArgumentException) {
    103101        exceptionFired = true;
    104102      }
     
    111109        RealVector actual;
    112110        actual = target.Cross(random, parents);
    113       }
    114       catch (System.ArgumentException) {
     111      } catch (System.ArgumentException) {
    115112        exceptionFired = true;
    116113      }
     
    147144      try {
    148145        actual = BlendAlphaBetaCrossover.Apply(random, parent1, parent2, alpha, beta);
    149       }
    150       catch (System.ArgumentException) {
     146      } catch (System.ArgumentException) {
    151147        exceptionFired = true;
    152148      }
     
    161157      try {
    162158        actual = BlendAlphaBetaCrossover.Apply(random, parent1, parent2, alpha, beta);
    163       }
    164       catch (System.ArgumentException) {
     159      } catch (System.ArgumentException) {
    165160        exceptionFired = true;
    166161      }
Note: See TracChangeset for help on using the changeset viewer.