Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/10 10:35:28 (14 years ago)
Author:
svonolfe
Message:

Updated the IntegerVector project to use the new solution encodings (#909)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Tests/UniformOnePositionManipulatorTest.cs

    r3053 r3059  
    8585    public void UniformOnePositionManipulatorApplyTest() {
    8686      TestRandom random = new TestRandom();
    87       IntArray parent, expected;
     87      IntegerVector parent, expected;
    8888      IntValue min, max;
    8989      // The following test is not based on published examples
    9090      random.Reset();
    9191      random.IntNumbers = new int[] { 3, 3 };
    92       parent = new IntArray(new int[] { 2, 2, 3, 5, 1 });
    93       expected = new IntArray(new int[] { 2, 2, 3, 3, 1 });
     92      parent = new IntegerVector(new int[] { 2, 2, 3, 5, 1 });
     93      expected = new IntegerVector(new int[] { 2, 2, 3, 3, 1 });
    9494      min = new IntValue(2);
    9595      max = new IntValue(7);
Note: See TracChangeset for help on using the changeset viewer.