Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/10 23:49:54 (14 years ago)
Author:
swagner
Message:

Renamed classes of HeuristicLab.Data (#909)

File:
1 edited

Legend:

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

    r3032 r3048  
    8585    public void UniformOnePositionManipulatorApplyTest() {
    8686      TestRandom random = new TestRandom();
    87       IntArrayData parent, expected;
    88       IntData min, max;
     87      IntArray parent, expected;
     88      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 IntArrayData(new int[] { 2, 2, 3, 5, 1 });
    93       expected = new IntArrayData(new int[] { 2, 2, 3, 3, 1 });
    94       min = new IntData(2);
    95       max = new IntData(7);
     92      parent = new IntArray(new int[] { 2, 2, 3, 5, 1 });
     93      expected = new IntArray(new int[] { 2, 2, 3, 3, 1 });
     94      min = new IntValue(2);
     95      max = new IntValue(7);
    9696      UniformOnePositionManipulator.Apply(random, parent, min, max);
    9797      Assert.IsTrue(Auxiliary.IntVectorIsEqualByPosition(expected, parent));
Note: See TracChangeset for help on using the changeset viewer.