Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/20 16:18:23 (5 years ago)
Author:
abeham
Message:

#2521: fixed build fail in tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Tests/HeuristicLab.Encodings.ScheduleEncoding-3.3/DirectScheduleGTCrossoverTest.cs

    r17226 r17516  
    2020#endregion
    2121
    22 using System.Linq;
    2322using HeuristicLab.Core;
    24 using HeuristicLab.Encodings.ScheduleEncoding;
    2523using HeuristicLab.Tests;
    2624using Microsoft.VisualStudio.TestTools.UnitTesting;
     
    4745      Schedule actual;
    4846      actual = DirectScheduleGTCrossover.Apply(random, parent1, parent2, jobData, mutProp);
    49       Schedule expected = DirectScheduleRandomCreator.Apply(new PWREncoding(3, 3, new TestRandom(new int[] { 0, 2, 1, 1, 0, 2, 1, 2, 0 }, null)), TestUtils.CreateJobData());
     47      Schedule expected = DirectScheduleRandomCreator.Apply(new PWR(3, 3, new TestRandom(new int[] { 0, 2, 1, 1, 0, 2, 1, 2, 0 }, null)), TestUtils.CreateJobData());
    5048      Assert.IsTrue(TestUtils.ScheduleEquals(actual, expected));
    5149    }
Note: See TracChangeset for help on using the changeset viewer.